/* ── PAGE HEADER ── */
.page-header {
  margin-top: 64px;
  background:
    radial-gradient(circle at top right, rgba(212, 177, 112, 0.2), transparent 32%),
    linear-gradient(135deg, #16233c 0%, #223154 55%, #1a2540 100%);
  padding: 4rem 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.page-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ── COMMON SECTION PARTS ── */
.news-main {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0) 15%),
    var(--ivory);
}
.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.section-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
}
.news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 177, 112, 0.14);
  color: #8c6a2d;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ── FEATURED ── */
.news-featured {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 4rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 2rem;
}
.news-featured-copy,
.news-featured-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}
.news-featured-copy {
  padding: 2.5rem;
  border-radius: 20px;
}
.news-featured-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.4rem 0 1rem;
  color: var(--text-light);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.news-featured-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-mid);
}
.news-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.news-featured-panel {
  border-radius: 20px;
  padding: 2rem 1.8rem;
}
.news-featured-panel h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.news-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-panel-list li {
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.news-panel-list li:first-child {
  padding-top: 0;
  border-top: none;
}
.news-panel-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.news-panel-list span {
  display: block;
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ── LIST ── */
.news-list-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4rem 5rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.news-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.news-sidebar {
  position: sticky;
  top: 96px;
  padding: 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.05);
}
.news-sidebar h3 {
  font-family: var(--serif);
  font-size: 0.96rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.news-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.news-categories a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: var(--ivory);
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.84rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.news-categories a:hover {
  background: rgba(212, 177, 112, 0.15);
  color: var(--navy);
  transform: translateX(2px);
}
.news-groups {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.news-group {
  scroll-margin-top: 96px;
}
.news-group-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.05);
}
.news-date {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}
.news-item-meta {
  margin-bottom: 0.8rem;
}
.news-body h4 {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.55rem;
}
.news-body p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.9;
}

/* ── CTA ── */
.cta-strip {
  background: var(--navy);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.cta-strip p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-gold {
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: #fff;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline,
.btn-outline-w {
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid rgba(26,37,64,0.12);
  color: var(--navy);
  background: #fff;
}
.btn-outline:hover {
  border-color: rgba(26,37,64,0.3);
  background: var(--ivory);
}
.btn-outline-w {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.btn-outline-w:hover {
  border-color: #fff;
  color: #fff;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2.5rem; }
  .news-featured {
    padding: 3.5rem 1.5rem 2.5rem;
    grid-template-columns: 1fr;
  }
  .news-featured-copy,
  .news-featured-panel {
    border-radius: 16px;
  }
  .news-featured-copy { padding: 2rem 1.4rem; }
  .news-list-section { padding: 0 1.5rem 3.5rem; }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    position: static;
  }
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.3rem;
  }
  .cta-strip { padding: 3rem 1.5rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
