/* =========================
   OTHERS: grid + pagination
   ========================= */
#news-others {
  scroll-margin-top: 120px;
}

/* (tùy chọn) cuộn mượt */
html {
  scroll-behavior: smooth;
}

.th-news__heading {
  font-size: clamp(24px, calc(1.02564vw + 20.31px), 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -2px;
}

.th-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, calc(0.9375vw + 8px), 26px);
  margin-block: clamp(40px, 3.125vw, 60px);
}

.th-news__card {
  display: grid;
  gap: clamp(20px, calc(0.9375vw + 8px), 26px);
}

.th-news__card-thumb {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 7 / 5;
  width: auto;


}

.th-news__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  transition: transform .35s ease, opacity .35s ease;

}

@media (max-width: 1024px) {
  .th-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .th-news__grid {
    grid-template-columns: 1fr;
  }

}

.th-news__card-thumb:hover img {
  transform: scale(1.05);
}

.th-news__card-body {
  display: grid;
  gap: 16px;

}

.th-news__date {
  color: var(--blue);
  font-weight: 400;
  font-size: clamp(12px, calc(0.3125vw + 8px), 14px);
  line-height: 1;
}

.date {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
}

.line-date {
  height: 1px;
  background: var(--blue);
  width: 100%;
  border-radius: 2px;
  translate: 0 0;
}

.th-news__card-title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(22px, calc(0.3125vw + 18px), 24px);
  line-height: 1.5;
  letter-spacing: -1px;
}

.th-news__card-title a {
  color: var(--black);
  text-decoration: none;

}

.th-news__card-title a:hover {
  color: var(--blue);
}

.th-news-card__excerpt {
  font-weight: 400;
  font-size: clamp(14px, calc(13.77px + 0.12vw), 16px);
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
}


