#list .inner {
  margin-top: 32px;
  margin-bottom: 61px;
  display: grid;
  gap: 49px 35px;
  grid-template-columns: 1fr 1fr 1fr;
}

#list .post {
  height: 393px;
  cursor: pointer;
}

#list .post:hover {
  text-decoration: none !important;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

#list .post-image {
  flex-basis: 240px;
}

#list .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#list .post-details {
  flex-grow: 1;
  border: 1px solid var(--middle-gray);
  border-top: none;
  padding-bottom: 10px;
}

#list .date {
  font-size: 11px;
}

#list .title {
  font-size: 21px;
}

#list .read-more {
  font-size: 14px;
  border: 2px solid var(--red);
  width: fit-content;
  margin: 0 auto;
  padding: 0 26px;
  height: 36px;
  line-height: 36px;
}

#list .category-pagination {
  padding-bottom: 37px;
}

#list .category-pagination > * {
  margin: 0 10px;
}

#list .category-pagination > .previous-page {
  margin-right: 30px;
}
#list .category-pagination > .next-page {
  margin-left: 35px;
}

@media screen and (max-width: 992px ) {
  #list .inner {
    grid-template-columns: 1fr 1fr;
    gap: 49px 15px;
  }
}

@media screen and (max-width: 600px ) {
  #list .inner {
    grid-template-columns: 1fr;
    gap: 37px 15px;
    margin-bottom: 41px;
  }
  #list .category-pagination {
    padding-bottom: 58px;
  }
}