.post-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  padding-top: 10px;
}

.post-list-entry,
.post-list-entry-highlight {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--background);
  border-radius: 5px;
  box-shadow: none;
  padding: 10px;
  img {
    margin: 0 !important;
  }
}

.post-list-entry {
  flex-direction: row;
}

.post-list-entry-highlight {
  flex-direction: column;
  margin-bottom: 50px;
}

.post-list-entry:hover,
.post-list-entry-highlight:hover {
  background-color: var(--background-accent);
  box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1);
}

.post-list-entry-banner {
  width: 250px !important;
  height: auto;
}

.post-list-entry-details {
  display: flex;
  flex-direction: column;
}

.post-list-entry-title {
  font-size: 24px;
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;;
  user-select: none;
}

.pagination-button {
  height: 35px !important;
  border-radius: 5px !important;
}
