/* ==== Scoped News Styles ==== */
.news-page .inner { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Hero */
.news-hero {
  padding: 4.5rem 0 2rem;
  background: linear-gradient(135deg, #004064 0%, #1FA8A3 100%);
  color: #fff;
  text-align: center;
}
.news-hero h1 { font-size: 2.5rem; font-weight: 200; margin: 0 0 .75rem; color: #fff; }
.news-hero .sub { font-size: 1.15rem; opacity: .95; }

/* Filters */
.news-filters { background: #f6f9fb; padding: 1rem 0; border-bottom: 1px solid #e6eef1; }
.chip-group { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.chip {
  border: 1px solid #cfe2e6;
  background: #fff;
  color: #004064;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 200;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1.5rem;
}
.chip.is-active { background: #B7DFE7; border-color: #1FA8A3; color: #fff; }

/* Cards grid */
.news-grid { padding: 2rem 0 3rem; }
#news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  #news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  #news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.news-card {
  background: #fff;
  border: 1px solid #e6eef1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.news-card .thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.news-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.news-card:hover .thumb img { transform: scale(1.03); }

.news-card .card-body { padding: 1rem 1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.news-card .title {
  font-weight: 800; color: #004064; text-decoration: none; font-size: 1.05rem;
}
.news-card .title:hover { color: #038faa; }
.news-card .excerpt { color: #445b66; font-size: .98rem; line-height: 1.45; }

.news-card .meta {
  display: flex; justify-content: space-between; align-items: center; margin-top: .25rem;
  font-size: .9rem; color: #5c7680;
}
.news-card .meta .tags i { margin-right: .4rem; color: #F59E0B; }

/* Pagination */
.news-pagination { display: flex; gap: .4rem; justify-content: center; margin: .25rem 0 2rem; }
.news-pagination .page {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 8px;
  border: 1px solid #d9e6ea; background: #fff; color: #004064; text-decoration: none;
  font-weight: 700;
}
.news-pagination .page:hover { border-color: #1FA8A3; color: #1FA8A3; }
.news-pagination .page.is-active { background: #1FA8A3; border-color: #1FA8A3; color: #fff; }
.news-pagination .page.disabled { opacity: .4; pointer-events: none; }
