/* ============================================================
   GFSO MOCKUP — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

:root {
  --flag-red: #B22234;
  --flag-red-dark: #8C1B29;
  --flag-blue: #3C3B6E;
  --flag-blue-dark: #2A2950;
  --white: #FFFFFF;
  --ink: #111111;
  --ink-muted: #4A4A4A;
  --hairline: #E5E5E5;
  --surface: #FAFAFA;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1180px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  --nav-height: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a {
  color: var(--flag-red);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section { padding: var(--space-xxl) 0; }
.section--tight { padding: var(--space-lg) 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--ink-muted); max-width: 60ch; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-bottom: var(--space-sm);
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn--red {
  background: var(--flag-red);
  color: var(--white);
}
.btn--red:hover { background: var(--flag-red-dark); }

.btn--blue {
  background: var(--flag-blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--flag-blue-dark); }

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--ink); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Row 1: logo (left, full height) + stacked 3-row actions (right) */
.header-row-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: var(--space-md) 0;
  min-height: 230px;
}



.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo img {
  height: 120px;
  width: auto;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.9rem;
  color: var(--flag-blue);
  letter-spacing: -0.015em;
  line-height: 0.95;
  white-space: nowrap;
}

.header-logo-text span {
  color: var(--flag-red);
  margin-top: 0.05em;
}

/* Right-hand 3-row action stack */
.header-row-1-right {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 460px;
  max-width: 100%;
  box-sizing: border-box;
}

.header-actions-top {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.header-actions-top .btn {
  flex: none;
  justify-content: center;
  background: var(--flag-blue);
  color: var(--white);
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  border: none;
}

.header-actions-top .btn:hover { background: var(--flag-blue-dark); }

.header-actions-top .btn--contact {
  background: var(--ink);
  color: var(--white);
}

.header-actions-top .btn--contact:hover {
  background: #000000;
}

.header-newsletter-fields {
  display: flex;
  gap: 0.4rem;
}

.header-newsletter-fields input {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.5rem 0.7rem;
  border: 1.5px solid var(--flag-red);
  border-radius: 4px;
  background: var(--white);
  min-width: 0;
}

.header-newsletter-fields input:focus {
  outline: none;
  border-color: var(--flag-red-dark);
}

.header-newsletter-fields input[name="first-name"],
.header-newsletter-fields input[name="last-name"] {
  flex: 1.2;
}

.header-newsletter-fields input[type="email"] {
  flex: 2.8;
}

.header-newsletter-submit {
  width: 100%;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--flag-red);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.header-newsletter-submit:hover { background: var(--flag-red-dark); }

/* Row 3: main navigation */
.header-row-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0;
}

.header-row-3 nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}



.main-nav {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  flex-wrap: nowrap;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: block;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--flag-red);
}

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  min-width: 290px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  z-index: 50;
}

.main-nav > li:hover .dropdown {
  display: block;
}

.main-nav .dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.main-nav .dropdown a:hover {
  background: #E8E8E8;
  color: var(--flag-red);
  border-left: 4px solid var(--flag-red);
  padding-left: calc(1rem - 4px);
}

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.1rem;
  padding: 0.4rem;
}

/* ============================================================
   HOME CAROUSEL
   ============================================================ */
.home-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

/* ── Slide type 1: full-bleed with overlay (Rhapsody in Blue) ── */
.carousel-slide--bleed.active {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.carousel-slide--bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.82) 30%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.15) 80%,
    rgba(10,10,10,0.0) 100%
  );
}

.carousel-slide--bleed .carousel-bleed-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-xl) 0;
}

/* ── Slide type 2: image + side panel (de Blasiis, etc.) ── */
.carousel-slide--split.active {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.carousel-split-image {
  position: relative;
  width: 75%;
  flex: none;
  aspect-ratio: 1800/1000;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.carousel-split-image-title {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.carousel-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.0) 75%
  );
}

.carousel-split-title-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.carousel-split-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  border-bottom: 2px solid var(--flag-red);
  padding-bottom: 0.2rem;
}

.carousel-split-panel {
  width: 25%;
  flex: none;
  min-width: 0;
  min-height: 560px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-xl) var(--space-lg);
}

.carousel-split-panel-inner {
  display: block;
}

.carousel-panel-title-link {
  display: block;
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.carousel-panel-title-link:hover .carousel-panel-title {
  color: var(--flag-red);
}

.carousel-panel-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.15;
  color: var(--flag-blue);
  margin-top: 0.2rem;
  transition: color 0.15s ease;
}

.carousel-split-panel-text p {
  font-size: 1.6rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.carousel-split-panel-text p:last-child {
  margin-bottom: 0;
}

.carousel-split-panel .eyebrow {
  margin-bottom: 0;
}

.carousel-split-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}

.carousel-split-actions .btn {
  width: auto;
  justify-content: center;
}

.carousel-split-actions .btn {
  justify-content: center;
}

.carousel-split-panel--movies {
  background: #2A1245;
  color: var(--white);
}

.carousel-split-panel--movies .carousel-split-panel-text p {
  color: #E4D8F2;
}

.carousel-split-panel--movies .eyebrow {
  color: #4FE0E8;
}

.carousel-panel-title--movies {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 18px rgba(79, 224, 232, 0.35);
}

.carousel-movies-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: #4FE0E8 !important;
  text-align: center;
  margin-top: var(--space-sm);
}

.btn--movies-accent {
  background: #4FE0E8;
  color: #1A0B30;
}

.btn--movies-accent:hover {
  background: #7AEAF0;
}

.carousel-movies-learn-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.45rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 4px solid var(--flag-red);
  padding-bottom: 0.3rem;
}

/* ── Carousel navigation ── */
.carousel-dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--white);
}

.carousel-slide--split .carousel-dots {
  bottom: var(--space-sm);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.35);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover { background: rgba(0,0,0,0.55); }
.carousel-arrow--prev { left: var(--space-md); }
.carousel-arrow--next { right: var(--space-md); }

@media (max-width: 768px) {
  .carousel-slide--split.active {
    flex-direction: column;
    min-height: auto;
  }

  .carousel-split-image {
    flex: none;
    width: 100%;
    align-items: flex-end;
  }

  .carousel-arrow { display: none; }
}

/* ============================================================
   HERO (legacy single-image fallback)
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.82) 30%,
    rgba(10,10,10,0.55) 55%,
    rgba(10,10,10,0.15) 80%,
    rgba(10,10,10,0.0) 100%
  );
}

.carousel-bleed-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-xl) 0;
}

.carousel-bleed-content .eyebrow { color: #FF8A8A; }

.carousel-bleed-content h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.hero-detail {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 54ch;
}

.hero-detail strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   UPCOMING CONCERTS
   ============================================================ */
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.concert-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.concert-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.concert-card-body {
  padding: var(--space-md);
}

.concert-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flag-blue);
  margin-bottom: 0.4rem;
}

.concert-card h3 {
  margin-bottom: 0.5rem;
}

.concert-card p {
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.concert-card a.btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
}

/* ============================================================
   DIRECTOR LETTER
   ============================================================ */
.director-section {
  background: var(--flag-blue);
  padding: var(--space-xxl) 0;
}

.director-inner {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.director-photo {
  flex-shrink: 0;
  width: 280px;
}

.director-photo img {
  border-radius: 6px;
  width: 100%;
}

.director-photo-caption {
  font-size: 0.85rem;
  color: #C8C8DC;
  margin-top: 0.6rem;
  font-style: italic;
}

.director-content {
  flex: 1;
}

.director-content .eyebrow {
  color: #FF8A8A;
}

.director-content h2 {
  color: var(--white);
}

.director-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--flag-red);
  padding-left: var(--space-md);
}

.director-content p {
  color: #E8E8E8;
  margin-bottom: var(--space-sm);
  max-width: 64ch;
}

.director-signature {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-top: var(--space-md);
}

.director-signature span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: #C8C8DC;
  margin-top: 0.2rem;
}

/* ============================================================
   WAYS TO EXPERIENCE
   ============================================================ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.experience-card {
  padding: var(--space-lg);
  border-radius: 6px;
  color: var(--white);
}

.experience-card.red { background: var(--flag-red); }
.experience-card.blue { background: var(--flag-blue); }
.experience-card.ink { background: var(--ink); }

.experience-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.experience-card p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
  max-width: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--ink);
  color: #CFCFCF;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 240px;
  margin-right: auto;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-brand-block p {
  color: #ABABAB;
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
}

.footer-contact {
  font-size: 0.85rem;
  color: #ABABAB;
  line-height: 1.7;
}

.footer-contact a { color: #ABABAB; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.55rem; }

.footer-col a {
  color: #ABABAB;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid #333;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--flag-red);
  border-color: var(--flag-red);
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid #333;
  flex-wrap: wrap;
}

.footer-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: var(--space-md);
  row-gap: var(--space-sm);
  align-items: start;
  justify-content: center;
}

.footer-badge {
  display: inline-block;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}

.footer-badge:hover { opacity: 1; }

.footer-badge img {
  height: 48px;
  width: auto;
}

/* For badges with a solid white background fill — give them a
   deliberate small card so they read as intentional, not broken */
.footer-badge--card {
  background: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
}

.footer-badge--card img {
  height: 40px;
}

.footer-badge-caption {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.4;
  text-align: center;
  max-width: none;
}

.footer-badge-caption--grid {
  grid-column: 4;
  grid-row: 2;
  max-width: 220px;
}

.footer-supporters-cta {
  grid-column: 1 / 4;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-supporters-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--flag-red);
  transition: color 0.15s ease;
}

.footer-supporters-cta a:hover {
  color: #ff5a6e;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: #777;
  padding-top: var(--space-md);
}

@media (max-width: 768px) {
  .footer-badges-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .footer-supporters-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-badge-caption--grid {
    grid-column: 1;
    grid-row: auto;
  }
}
/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
}

.contact-map iframe {
  display: block;
}

.contact-details p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  max-width: none;
}

.contact-details p strong {
  color: var(--flag-blue);
}

.contact-details a {
  color: var(--flag-red);
}

.contact-directions {
  margin-top: var(--space-md);
  line-height: 1.75;
  color: var(--ink-muted) !important;
}

.contact-rule {
  border: none;
  border-top: 1px solid var(--flag-blue);
  opacity: 0.4;
  margin: var(--space-md) 0;
}

.contact-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-muted) !important;
}

/* ── Email Us form section ─────────────────────────────────── */
.contact-form-section {
  background: var(--flag-blue);
  padding: var(--space-xxl) 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--white);
}

.contact-form-section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-field {
  margin-bottom: var(--space-md);
}

.contact-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-field label span {
  font-weight: 400;
  font-style: italic;
  color: #C8C8E0;
  font-size: 0.85rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--flag-red);
  outline-offset: 1px;
}

.contact-form-submit {
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
}

.contact-form-submit:hover {
  background: #EAEAEA;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============================================================
   SYMPHONY MUSICIANS PAGE
   ============================================================ */
.musicians-section {
  padding: var(--space-xl) 0 var(--space-xxl);
}

.musician-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--flag-blue);
  margin-top: var(--space-xxl);
  margin-bottom: 0;
}

.musician-section-title:first-child {
  margin-top: 0;
}

.musician-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-lg) var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

.musician-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: var(--space-sm);
}

.musician-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.05em;
}

.musician-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0;
}

.musician-role {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
  margin-top: 0.1rem;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .musician-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: var(--space-md) var(--space-sm);
  }
}

/* ============================================================
   STAFF & ADMINISTRATION PAGE
   ============================================================ */
.staff-section {
  padding: var(--space-xxl) 0;
}

.staff-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  column-gap: var(--space-xl);
  row-gap: 0;
}

.staff-column-title {
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 1;
}

.staff-board-title {
  grid-column: 2 / 4;
  grid-row: 1;
  width: 100%;
  text-align: center !important;
}

.staff-column--staff {
  grid-column: 1;
  grid-row: 2;
}

.staff-column--board-1 {
  grid-column: 2;
  grid-row: 2;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: var(--space-md);
  margin-left: calc(-1 * var(--space-md));
}

.staff-column--board-2 {
  grid-column: 3;
  grid-row: 2;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: var(--space-md);
  margin-right: calc(-1 * var(--space-md));
}

.staff-entry {
  margin-bottom: var(--space-lg);
}

.staff-entry p {
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.5;
  max-width: none;
}

.staff-entry-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-bottom: 0;
  line-height: 1.4;
}

.staff-entry-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #B8B8C8;
}

/* ── Bio sections (Executive Director / Board Chair) ── */
.staff-bio-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.staff-bio-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.staff-bio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--flag-blue);
  margin-bottom: var(--space-md);
}

.staff-bio-name--light {
  color: var(--white);
}

.about-section--white .staff-bio-text p,
.about-section--navy .staff-bio-text p {
  max-width: none;
}

.staff-bio-signature {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  margin-top: var(--space-md);
}

@media (max-width: 900px) {
  .staff-board-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .staff-column-title,
  .staff-board-title,
  .staff-column--staff,
  .staff-column--board-1,
  .staff-column--board-2 {
    grid-column: 1;
    grid-row: auto;
  }

  .staff-board-title {
    margin-top: var(--space-xl);
  }

  .staff-bio-grid {
    grid-template-columns: 1fr;
  }

  .staff-bio-photo {
    max-width: 220px;
  }
}

/* ============================================================
   ABOUT THE SYMPHONY PAGE
   ============================================================ */
.about-section {
  padding: var(--space-xxl) 0;
}

.about-section--white {
  background: var(--white);
}

.about-section--navy {
  background: var(--flag-blue);
}

.about-section--navy-dark {
  background: var(--flag-blue-dark);
}

.about-section-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-section-grid--reverse {
  grid-template-columns: 1fr 1.6fr;
}

.about-section-grid--reverse .about-section-text {
  grid-column: 2;
}

.about-section-grid--reverse .about-section-photos {
  grid-column: 1;
  grid-row: 1;
}

.about-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink);
  margin-top: 0;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.about-section-title--spacer {
  visibility: hidden;
}

.about-section-title--light {
  color: var(--white);
}

.about-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--flag-red);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.about-section--white p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: none;
}

.about-section--navy p,
.about-section--navy-dark p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: none;
}

.about-pullquote {
  font-style: italic;
  font-size: 1.15rem !important;
  line-height: 1.75 !important;
  border-left: 3px solid var(--flag-red);
  padding-left: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg) !important;
}

.about-section--white .about-pullquote {
  color: var(--ink) !important;
}

.about-pullquote--history {
  font-size: 1.3rem !important;
  color: var(--white) !important;
  border-left-color: var(--white);
  margin-top: var(--space-lg) !important;
}

/* ── Our Vision — full-width centered block ── */
.about-vision-block {
  margin-top: var(--space-xxl);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-subhead--centered {
  text-align: center;
}

.about-pullquote--vision {
  border-left: none;
  border-top: 3px solid var(--flag-red);
  padding-left: 0;
  padding-top: var(--space-md);
  font-size: 1.35rem !important;
  text-align: left;
}

/* ── Photo stack ── */
.about-section-photos {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-section-photos img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.about-section-photos--single img {
  margin-bottom: var(--space-sm);
}

.about-photo-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: #E8E8E8 !important;
  text-align: center;
}

@media (max-width: 900px) {
  .about-section-grid,
  .about-section-grid--reverse {
    grid-template-columns: 1fr;
  }

  .about-section-grid--reverse .about-section-text,
  .about-section-grid--reverse .about-section-photos {
    grid-column: 1;
  }

  .about-section-photos {
    flex-direction: row;
    overflow-x: auto;
    margin-top: var(--space-lg);
  }

  .about-section-photos img {
    width: 200px;
    flex-shrink: 0;
  }
}

/* ============================================================
   REGULAR PAGE TEMPLATE
   (white background — used for standard content pages like
   Support a Musician, and any future page following this pattern)
   ============================================================ */
.regular-page-header {
  background: var(--white);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
}

.regular-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.15;
}

.regular-page-hero {
  background: var(--white);
  padding-top: 0;
  padding-bottom: var(--space-xl);
}

.regular-page-hero img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.regular-page-content {
  background: var(--white);
  padding-top: 0;
  padding-bottom: var(--space-xxl);
}

.regular-page-content .lead-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  max-width: none;
  margin-bottom: var(--space-lg);
}

.regular-page-content p {
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: none;
  margin-bottom: var(--space-md);
}

.regular-page-subhead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* ── Sponsorship tier list ── */
.sponsorship-tiers {
  border-top: 1px solid var(--hairline);
  margin-bottom: var(--space-xl);
}

.sponsorship-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
}

.sponsorship-tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.sponsorship-tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--flag-blue);
  white-space: nowrap;
}

.sponsorship-tier--featured {
  background: #FBF6E9;
  margin: 0 calc(-1 * var(--space-md));
  padding: 1rem var(--space-md);
  border-radius: 4px;
  border-bottom: none;
}

.sponsorship-tier--featured .sponsorship-tier-price {
  color: var(--flag-red);
}

.sponsorship-tier-honor {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

/* ── Recognition block ── */
.recognition-block {
  background: var(--surface);
  border-left: 4px solid var(--flag-blue);
  border-radius: 4px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.recognition-block p {
  max-width: none;
  margin-bottom: var(--space-sm);
}

.recognition-block p:last-child {
  margin-bottom: 0;
}

.recognition-footnote {
  font-size: 0.88rem !important;
  color: #999 !important;
  font-style: italic;
}

.regular-page-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .sponsorship-tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .sponsorship-tier--featured {
    margin: 0;
  }
}

/* ============================================================
   OUR SUPPORTERS PAGE
   ============================================================ */
.supporters-intro {
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 70ch;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.supporter-grid--flat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.supporter-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: var(--space-lg);
  height: 200px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.supporter-card--no-link {
  cursor: default;
}

.supporter-card:not(.supporter-card--no-link):hover {
  border-color: var(--flag-blue);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.supporter-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .supporter-grid--flat {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .supporter-card {
    height: 160px;
    padding: var(--space-md);
  }
}

@media (max-width: 600px) {
  .supporter-grid--flat {
    grid-template-columns: repeat(2, 1fr);
  }

  .supporter-card {
    height: 130px;
  }
}

/* ============================================================
   HELP THE SYMPHONY — ROW LAYOUT
   ============================================================ */
.help-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.help-row:last-child {
  border-bottom: none;
}

.help-row-image {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
}

.help-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-row-content {
  flex: 1;
}

.help-row-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.help-row-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.help-row-buttons .btn {
  width: 245px;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
}

.btn--learn-more {
  background: var(--ink);
  color: var(--white);
}

.btn--learn-more:hover {
  background: #000000;
}

@media (max-width: 768px) {
  .help-row {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .help-row-image {
    width: 76px;
    height: 76px;
  }

  .help-row-buttons .btn {
    width: 100%;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .director-inner { flex-direction: column; }
  .director-photo { width: 220px; }
}

@media (max-width: 768px) {
  .header-row-1-right { display: none; }
  .header-logo-text { font-size: 1.3rem; }
  .header-logo img { height: 64px; }
  .main-nav { display: none; }
  .header-row-3 { justify-content: flex-end; }

  .concerts-grid,
  .experience-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-brand-block {
    align-items: center;
    text-align: center;
    margin-right: 0;
    width: 100%;
  }

  .hero { min-height: 480px; }
  .carousel-bleed-content { padding: var(--space-lg) 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}

/* ============================================================
   SYMPHONY AUDITIONS PAGE
   ============================================================ */
.auditions-intro {
  background: var(--flag-blue);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-sm);
}

.auditions-intro .regular-page-content {
  background: transparent;
}

.auditions-intro .lead-text {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.auditions-intro p {
  color: #D8D8E8;
  margin-bottom: 0.5rem;
}

.auditions-intro strong {
  color: var(--white);
}

.auditions-intro .regular-page-subhead {
  color: var(--white);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.auditions-intro .auditions-positions-list li {
  color: #D8D8E8;
}

.auditions-date {
  color: var(--white);
  margin-bottom: 0;
}

.auditions-section {
  background: var(--white);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xxl);
}

.auditions-layout {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.auditions-image-col {
  flex: 0 0 340px;
}

.auditions-image-col img {
  width: 100%;
  border-radius: 6px;
  display: block;
  position: sticky;
  top: 0;
}

.auditions-text-col {
  flex: 1;
}

.auditions-text-col .regular-page-subhead:first-child {
  margin-top: 0;
}

.auditions-positions-list,
.auditions-apply-list,
.auditions-pdf-list {
  margin: 0 0 var(--space-md);
  padding-left: 1.4rem;
}

.auditions-positions-list li,
.auditions-apply-list li {
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.auditions-date {
  font-size: 1.08rem;
  color: var(--ink);
}

.auditions-pdf-list {
  list-style: none;
  padding-left: 0;
}

.auditions-pdf-list li {
  margin-bottom: var(--space-sm);
}

.auditions-pdf-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--flag-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--flag-blue);
  padding-bottom: 0.1rem;
}

.auditions-pdf-list a:hover {
  color: var(--flag-red);
  border-bottom-color: var(--flag-red);
}

@media (max-width: 800px) {
  .auditions-layout {
    flex-direction: column;
  }

  .auditions-image-col {
    flex: none;
    width: 100%;
  }

  .auditions-image-col img {
    position: static;
  }
}
/* ============================================================
   NOTE DETAIL PAGE — PDF DOWNLOAD LINK
   ============================================================ */
.note-detail-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.2;
  margin: var(--space-sm) 0;
}

.note-detail-header {
  padding: var(--space-lg) 0 0;
}

.note-detail-hero {
  padding: 0.75rem 0;
}

.note-detail-content {
  padding: 0.75rem 0 var(--space-xl);
}

.note-detail-hero img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.note-pdf-link {
  margin-top: var(--space-sm);
}

.note-pdf-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--flag-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--flag-blue);
  padding-bottom: 0.1rem;
}

.note-pdf-link a:hover {
  color: var(--flag-red);
  border-bottom-color: var(--flag-red);
}

/* ============================================================
   NEWS & REVIEWS PAGE
   ============================================================ */

/* --- Grid/List view toggle --- */
.news-view-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.news-view-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.15s ease;
}

.news-view-btn:hover {
  color: var(--ink);
}

.news-view-btn.active {
  color: var(--flag-red);
}

.news-view-sep {
  color: var(--hairline);
  font-size: 1.15rem;
}

/* --- Filter bar --- */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--hairline);
}

.news-filter-btn {
  background: none;
  border: none;
  padding: 0.3rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.news-filter-btn:hover {
  color: var(--ink);
}

.news-filter-btn.active {
  color: var(--flag-red);
  border-bottom-color: var(--flag-red);
}

/* --- Card grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: var(--space-sm);
}

.news-card-body {
  display: flex;
  flex-direction: column;
}

.news-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--flag-red);
  margin-bottom: 0.4rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 0.5rem;
  transition: color 0.15s ease;
}

.news-card:hover h3 {
  color: var(--flag-blue);
}

.news-card-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

.news-card-meta span {
  color: var(--ink-muted);
}

.news-empty {
  text-align: center;
  padding: var(--space-xl) 0;
  color: var(--ink-muted);
}

/* --- Pagination --- */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--hairline);
}

.news-page-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}

.news-page-btn:hover:not(:disabled) {
  color: var(--ink);
  background: var(--surface);
}

.news-page-btn.active {
  color: var(--white);
  background: var(--flag-red);
}

.news-page-btn:disabled {
  color: #CCC;
  cursor: default;
}

.news-page-btn--arrow {
  font-size: 1.2rem;
}

.news-results-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-xl);
}

/* --- List view modifier: single column, larger images, same card structure --- */
.news-grid--list {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.news-grid--list .news-card-image {
  width: 100%;
  height: auto;
  object-fit: unset;
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card-image { height: 220px; }
}
