.container-taxonomy {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: 7rem;
}

.container-taxonomy h1 {
  font-size: 2rem;
  line-height: 2.688rem;
  font-weight: 700;
  color: var(--Primary-color-Oxfordblue);
  text-align: center;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.list-post {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.item_category_news .img a img {
  width: 100%;
  height: 12.625rem;
  object-fit: cover;
  border-radius: 0.625rem;
  transition: 0.5s ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.item_category_news .img a img:hover {
  transform: scale(1.05);
  transition: 0.5s ease-in-out;
}

.item_category_news .content a:first-child {
  color: white;
  background: var(--Primary-color-Oxfordblue);
  padding: 2px 5px;
  font-size: 0.75rem;
  border-radius: 5px;
  width: fit-content;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.item_category_news .content .author-date a:first-child {
  color: white;
  background: #1D85E81F;
  padding: 4.5px 7px;
  font-size: 0.75rem;
  border-radius: 5px;
  width: fit-content;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.item_category_news .content .author-date a:first-child:hover {
  background: rgba(29, 133, 232, 0.2);
}

.item_category_news .content .title {
  color: var(--Primary-color-Azure-blue);
  font-size: 1.375rem;
  letter-spacing: 0.05rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 5.625rem;
}

.item_category_news .content .title:hover {
  color: var(--Primary-color-Azure-blue-2);
}

.item_category_news .content .author-date {
  display: flex;
  align-items: center;
}

.item_category_news .content .author-date .author,
.item_category_news .content .author-date .date {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.item_category_news .content .author-date .date svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  transform: translatey(-1px);
}

.item_category_news .content .author-date .author svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5rem;
}

.item_category_news .content .author-date .author a {
  font-size: 0.875rem;
  line-height: 1.313rem;
  color: var(--text-text-oxford-blue-high-emphasis-active-body-text-1);
  font-weight: 500;
}

.content .author-date .date svg {
  filter: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(57%)
    hue-rotate(201deg) brightness(93%) contrast(87%);
}

.item_category_news .content .author-date .date {
  font-size: 0.875rem;
  line-height: 1.313rem;
  color: var(--color-light-gray-blue-01);
  font-weight: 400;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.pagination .page-numbers {
  width: auto;
  padding: 0 1rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
}

.pagination .page-numbers.current {
  border: 1px solid #ff4e41;
}

.categories-post .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.pagination .page-numbers {
  width: auto;
  padding: 0 1rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-gray);
}

.pagination .page-numbers.current {
  border: 1px solid #ff4e41;
}

@media screen and (max-width: 639.9px) {
  .pagination .page-numbers {
    width: auto;
    padding: 0 0.75rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
  }

  .list-post {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem;
  }
}
