.news-title {
  margin-top: 128px;
  padding-top: 56px;
  padding-bottom: 128px;
}
.news-title .main-header {
  margin-top: 64px;
}

.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 56px;
}

.news-body .news-info {
  background-color: #1a1a25;
  padding: 24px 24px 20px;
}

.news-body .news-info .news-btn {
  position: relative;
  color: #fff;
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  padding: 10px 44px;
  max-width: fit-content;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.news-body .news-info .news-btn::after {
  position: absolute;
  content: '';
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/images/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.news-body .news-info .news-btn:hover {
  color: var(--color-primary);
  border-color: currentColor;
}
.news-body .news-info .news-btn:hover::after {
  background-image: url(/images/chevron-right-hover.svg);
}

.news-pagination {
  margin-top: 64px;
}

.news-pagination .page-link {
  border: 1px solid #32323f;
  color: #fff;
  background-color: transparent;
}

.news-pagination .page-item.active .page-link {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.news-pagination .page-item.disabled .page-link {
  opacity: 0.5;
}
