/* News page */
.news-banner {
  position: relative;
  color: #fff;
  padding: 80px 0 72px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.news-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.news-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,26,52,.92) 0%, rgba(17,42,82,.82) 35%, rgba(17,42,82,.55) 60%, rgba(17,42,82,.3) 100%);
}
.news-banner__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
}
.news-banner__breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: rgba(174,190,216,.85);
  margin-bottom: 16px;
}
.news-banner__breadcrumb a { color: rgba(174,190,216,.85); }
.news-banner__breadcrumb a:hover { color: var(--gold-light); }
.news-banner__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.06;
  margin: 0 0 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.news-banner__sub {
  font-size: 18px;
  color: rgba(215,224,239,.9);
  margin: 0 0 28px;
  max-width: 480px;
}
.news-banner__byline { display: flex; align-items: center; gap: 10px; }
.news-banner__byline-bar { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; }
.news-banner__byline-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.featured-section { background: #fff; padding: 72px 0 0; }
.featured-link {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 48px;
  align-items: center;
  padding: 44px;
  background: var(--bg-light);
  border-radius: var(--r-lg);
  border-top: 4px solid var(--gold);
  transition: box-shadow var(--t);
}
.featured-link:hover { box-shadow: var(--shadow-hover); }
.featured-link__img {
  aspect-ratio: 16/9;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}
.featured-link__img-label {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(226,180,90,.9);
}
.featured-link__meta {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.featured-link__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 14px;
}
.featured-link__body { font-size: 16px; line-height: 1.7; color: var(--text-body); margin: 0 0 20px; }
.featured-link__read {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.articles-grid { background: #fff; padding: 56px 0 90px; }
.articles-grid .card-grid--3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }

.press-contact { background: var(--bg-light); padding: 72px 0; }
.press-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ── News page responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .news-banner      { min-height: 360px; padding: 60px 0; }
  .news-banner__sub { font-size: 16px; }

  .featured-section { padding: 56px 0 0; }
  .featured-link    {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .articles-grid    { padding: 40px 0 64px; }
  .articles-grid .card-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .press-contact    { padding: 56px 0; }
}
@media (max-width: 767px) {
  .news-banner      { min-height: 260px; padding: 48px 0; }
  .news-banner__sub { display: none; }

  .featured-link    { padding: 24px; }
  .featured-link__body { font-size: 15px; }

  .articles-grid    { padding: 32px 0 48px; }
  .articles-grid .card-grid--3 { grid-template-columns: 1fr; }

  .press-contact    { padding: 40px 0; }
}
