/**
 * Category News / SOI KÈO - Grid layout
 * Featured (2/3) + Secondary (1/3) | 3 equal cards
 */

/* Nền trang */
body.category .category-news-wrap #content,
body.category .category-news-wrap #primary,
body.category .category-news-wrap .site-main {
  background: #242932 !important;
}

.category-news-grid {
  padding: 1.5rem 1rem 2rem;
  max-width: 1350px;
  margin: 0 auto;
}

/* Tiêu đề section */
.category-news-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

/* Card chung */
.category-news-card {
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.category-news-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.category-news-card .card-thumb {
  position: relative;
  overflow: hidden;
  background: #1A1D23;
}

.category-news-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-news-card .card-thumb-placeholder {
  aspect-ratio: 16/10;
  background: #1A1D23;
}

/* Featured: lớn, title overlay bottom-left */
.category-news-card--featured .card-thumb {
  aspect-ratio: 16/9;
}

.category-news-card--featured .card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.category-news-card--featured .card-link:hover .card-title-overlay {
  color: #CB461B;
}

/* Secondary: title below image */
.category-news-card--secondary .card-thumb {
  aspect-ratio: 1;
}

.category-news-card--secondary .card-title-below {
  margin: 12px 0 0;
  padding: 0 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #F2F3F3 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-news-card--secondary .card-link:hover .card-title-below {
  color: #CB461B !important;
}

/* Small cards (row 2+): thumbnail + title below */
.category-news-card--small .card-thumb {
  aspect-ratio: 16/10;
}

.category-news-card--small .card-title-below {
  margin: 10px 0 0;
  padding: 0 2px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #F2F3F3 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-news-card--small .card-link:hover .card-title-below {
  color: #CB461B !important;
}

/* Pagination */
.category-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.category-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #1A1D23;
  color: #F2F3F3;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.category-pagination .page-numbers:hover,
.category-pagination .page-numbers.current {
  background: #CB461B;
  color: #fff;
}

/* Mobile */
@media screen and (max-width: 991px) {
  .category-news-card--featured .card-thumb {
    aspect-ratio: 16/10;
  }
  .category-news-card--featured .card-title-overlay {
    padding: 16px 14px 14px;
    font-size: 0.95rem;
  }
  .category-news-card--secondary .card-thumb {
    aspect-ratio: 16/10;
  }
}
