/* ============================================
   Protect Oxmoor
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-navy: #1B2A4A;
  --color-navy-light: #2C4066;
  --color-navy-dark: #111D33;
  --color-green: #2D6B3F;
  --color-green-light: #E8F5E9;
  --color-amber: #D4940A;
  --color-amber-light: #FFF3CD;
  --color-amber-dark: #4A3A0A;
  --color-red: #8B1A1A;
  --color-bg: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #555555;
  --color-border: #DEE2E6;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --max-width: 1140px;
  --header-height: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Anchor targets: clear the sticky header (plus a little breathing room) when jumping to a section */
section[id],
.concern-card[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Alert bar --- */
.alert-bar {
  display: block;
  background: var(--color-amber-light);
  border-bottom: 3px solid var(--color-amber);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: background-color 0.15s ease;
}

.alert-bar:hover,
.alert-bar:focus {
  background: #FCE4A0;
}

.alert-bar:hover .alert-bar-text,
.alert-bar:focus-visible .alert-bar-text {
  text-decoration: underline;
}

.alert-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-bar-icon-play {
  color: var(--color-amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.alert-bar-icon-arrow {
  margin-left: auto;
  flex-shrink: 0;
}

/* Dark variant — alternates with the light bar so stacked bars read as
   distinct, separate clickable rows. Cream text for contrast on dark amber;
   the amber play icon keeps its accent. */
.alert-bar--dark {
  background: var(--color-amber-dark);
  color: var(--color-amber-light);
}

.alert-bar--dark:hover,
.alert-bar--dark:focus {
  background: #5E4A0F;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1C3B1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: var(--header-height);
  gap: 0.5rem;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.site-brand {
  display: flex;
  align-items: last baseline;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.header-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.footer-logo {
  height: 130px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-left: auto;
}

/* When .footer-social sits between the nav and the copyright (not inside
   .footer-top), center it as its own row. */
.site-footer > .container > .footer-social {
  justify-content: center;
  margin: 1.25rem 0 0;
}

.header-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.header-social a:hover,
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
}

.header-social img,
.footer-social img {
  width: 24px;
  height: 24px;
  display: block;
}

.site-brand a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.05;
  text-decoration: none;
  letter-spacing: 0;
}

.site-brand a:hover {
  color: var(--color-amber);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  row-gap: 0.35rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

.main-nav a.active {
  border-bottom: 2px solid var(--color-amber);
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* CTA Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-amber {
  background: var(--color-amber);
  color: var(--color-navy-dark);
}

.btn-amber:hover {
  background: #E5A30B;
  color: var(--color-navy-dark);
}

.btn-green {
  background: #1C3B1A;
  color: var(--color-white);
}

.btn-green:hover {
  background: #2A5928;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--color-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-section .section-header h2 {
  font-size: 1.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.stat-underline {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-amber);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* --- Concerns Section --- */
.concerns-section {
  padding: 5rem 0;
  background: var(--color-bg);
}

.concerns-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.concerns-section .section-header h2 {
  font-size: 2rem;
}

.concerns-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.concern-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 2rem;
  border-left: 4px solid var(--color-amber);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.15s;
}

.concern-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.concern-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #1C3B1A;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.concern-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.concern-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.concern-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.concern-card p + p {
  margin-top: 1rem;
}

/* --- Resource callout: timely amber box for a featured link (e.g. top of Resources) --- */
.resource-callout {
  display: block;
  background: var(--color-amber-light);
  border: 2px solid var(--color-amber);
  border-left-width: 6px;
  border-radius: 6px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.35;
  transition: box-shadow 0.2s, transform 0.15s;
}

/* Keep the navy text on hover — the global a:hover amber would wash out on the amber fill. */
.resource-callout:hover,
.resource-callout:focus-visible {
  color: var(--color-navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* --- Nebius Teaser Section --- */
.nebius-teaser {
  padding: 5rem 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.nebius-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bhm01-image {
  margin: 0;
}

.bhm01-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bhm01-caption {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-light);
  text-align: center;
}

.nebius-content h2 {
  margin-bottom: 1rem;
}

.nebius-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.nebius-content .btn {
  margin-top: 0.5rem;
}

.nebius-cta {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

/* --- Community Voices Section --- */
.voices-section {
  position: relative;
  padding: 5rem 0;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.voices-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.voices-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.voices-inner {
  position: relative;
  z-index: 1;
}

.voices-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.voices-section .section-header h2 {
  color: var(--color-white);
  font-size: 2rem;
}

.voices-section .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.voice-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2rem;
}

.voice-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-amber);
}

.voice-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.voice-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}

.voice-role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.voices-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Community Voices page (interior, on white .page-body bg) --- */
.page-voices-intro {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin: 0 0 2rem;
}

.page-voice {
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.25rem 1.1rem 1.4rem;
  border-left: 4px solid var(--color-amber);
  background: #FAF6EC;
  border-radius: 0 4px 4px 0;
}

.page-voice blockquote {
  margin: 0 0 0.6rem;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
}

.page-voice figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.page-voice-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.page-voice-role {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.page-voice-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* --- CTA Section --- */
/* --- Who We Are & What We Stand For --- */
.who-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 5rem 0;
}

.who-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.who-section .section-header h2 {
  color: var(--color-white);
  font-size: 2rem;
}

.who-content {
  max-width: 720px;
  margin: 0 auto;
}

.who-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.who-cta {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

.cta-section {
  background: var(--color-bg);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--color-navy-dark);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.cta-section p {
  font-size: 1.3rem;
  color: var(--color-navy);
  max-width: 550px;
  margin: 0 auto 0.5rem;
  text-wrap: balance;
}

.cta-section p:last-of-type {
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-navy:hover {
  background: var(--color-navy-light);
  color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy-dark);
  border: 2px solid var(--color-navy-dark);
}

.btn-outline-dark:hover {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

/* --- Page Content with Sidebar --- */
.page-content {
  padding: 3rem 0 4rem;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.main-column .page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-amber);
}

.main-column .page-header h1 {
  font-size: 2.2rem;
}

.page-body {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.page-body h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body h3 {
  margin-top: 1.5rem;
}

.page-body ul, .page-body ol {
  margin-bottom: 1.25rem;
}

.page-body li {
  margin-bottom: 0.35rem;
}

/* Featured image on interior pages */
.page-featured-image {
  margin-bottom: 2rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Full-width image at the top of a content page (e.g. Listen to the Valley).
   Page-scoped — intentionally kept separate from the news .news-cover styles. */
.page-image-full {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0 0 1.5rem;
}

/* --- Sidebar --- */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.sidebar-section {
  background: var(--color-white);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.sidebar-section h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-amber);
}

/* Sidebar events */
.sidebar-events {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-events li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.sidebar-events li:last-child {
  border-bottom: none;
}

.event-date {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-amber);
  text-transform: uppercase;
}

.sidebar-events a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sidebar-events a:hover {
  color: var(--color-amber);
}

/* Sidebar links */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s, padding-left 0.2s;
}

.sidebar-links a:last-child {
  border-bottom: none;
}

.sidebar-links a:hover {
  color: var(--color-amber);
  padding-left: 0.25rem;
}

/* Sidebar newsletter */
.sidebar-newsletter p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.sidebar-newsletter .btn {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.75rem;
}

/* --- Myth vs Reality Cards --- */
.myth-card {
  background: var(--color-white);
  border-radius: 6px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.myth-header {
  background: var(--color-red);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.myth-header::before {
  content: "MYTH: ";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.15rem;
}

.reality-body {
  padding: 1.5rem;
  border-left: 4px solid var(--color-green);
}

.reality-body::before {
  content: "REALITY";
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}

.reality-body p {
  color: var(--color-text);
  line-height: 1.7;
}

.reality-body p:last-child {
  margin-bottom: 0;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-navy);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--color-amber);
  border-radius: 50%;
  border: 2px solid var(--color-navy);
}

.timeline-date {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.timeline-item p {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* --- Take Action lead-in --- */
.action-intro {
  font-size: 1.15rem;
  line-height: 1.6;
}

.action-lead {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin: 2rem 0 1.25rem;
}

@media (max-width: 480px) {
  .action-lead {
    font-size: 1.2rem;
  }
}

/* --- Action Cards --- */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.action-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 1.5rem;
  border-top: 4px solid var(--color-amber);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.action-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.action-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Callout Box --- */
.callout {
  background: var(--color-amber-light);
  border-left: 4px solid var(--color-amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}

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

.callout-navy {
  background: #E8EDF5;
  border-left-color: var(--color-navy);
}

/* Inline body links — visible underline at rest, thicker on hover */
.page-body p a:not(.btn),
.page-body li a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.page-body p a:not(.btn):hover,
.page-body li a:not(.btn):hover {
  text-decoration-thickness: 2px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.contact-social a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.contact-social img {
  width: 24px;
  height: 24px;
  display: block;
}

/* --- Footer --- */
.site-footer {
  background: #1C3B1A;
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--color-white);
  white-space: nowrap;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  margin-bottom: 0;
}

.site-credit a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.site-credit a:hover {
  color: var(--color-amber);
}

/* --- News Section --- */
.news-section {
  position: relative;
  padding: 5rem 0;
  background: #4E8560;
  color: var(--color-white);
  overflow: hidden;
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/oxmoor-region-map.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.news-section .container {
  position: relative;
  z-index: 1;
}

.news-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-section .section-header h2 {
  font-size: 2rem;
  color: var(--color-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.news-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 1.5rem;
  border-left: 4px solid var(--color-amber);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.news-list .news-card.has-image {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.news-card-image {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  display: block;
}

.news-grid .news-card-image {
  margin-bottom: 1rem;
}

.news-date {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.news-headline {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.news-headline a {
  color: var(--color-navy);
  text-decoration: none;
}

.news-headline a:hover {
  color: var(--color-green);
}

.news-excerpt {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.news-read-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: auto;
}

.news-read-more:hover {
  color: var(--color-amber);
}

.news-more {
  text-align: center;
}

.news-empty {
  color: var(--color-text-light);
  font-style: italic;
}

/* --- News Article Page --- */
.news-article-header .news-date {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-byline {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.news-cover {
  margin-bottom: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-cover img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.news-body hr.short {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.news-body .press-end {
  text-align: center;
}

.video-embed {
  width: 100%;
  max-width: 420px;
  margin: 1.5rem auto;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.news-back-link {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.news-back-link a {
  color: var(--color-navy);
  text-decoration: none;
}

.news-back-link a:hover {
  color: var(--color-amber);
}

/* --- News Pagination --- */
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-navy);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.pagination a:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.pagination a.active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* --- Sidebar: Recent News --- */
.sidebar-news {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.sidebar-news li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.sidebar-news li:last-child {
  border-bottom: none;
}

.sidebar-news-date {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.sidebar-news a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  transition: color 0.2s;
}

.sidebar-news a:hover,
.sidebar-news a.active {
  color: var(--color-amber);
}

.sidebar-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 0.25rem;
}

.sidebar-more:hover {
  color: var(--color-amber);
}

/* --- Birds (Haikubox) section --- */
.birds-section {
  padding: 5rem 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.birds-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.birds-section .section-header h2 {
  font-size: 2rem;
  color: var(--color-white);
}

.birds-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0.5rem auto 0;
  text-align: left;
}

.birds-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

/* Homepage section: the list intro uses .section-subtitle (margin-bottom: 0),
   so give the grid a little breathing room above it to match the interior
   page's plain-paragraph spacing. Scoped to .birds-section (homepage only). */
.birds-section .birds-list {
  margin-top: 1rem;
}

/* Center the homepage list intro ("Here is a list of birds recently heard...").
   It's the one .section-subtitle outside .section-header (a direct child of
   .container), so this targets only that line, leaving the multi-line intro
   paragraphs above left-aligned. Short single-line subtitle: centering is on-spec. */
.birds-section > .container > .section-subtitle {
  text-align: center;
}

.birds-list li {
  background: var(--color-white);
  border-left: 4px solid var(--color-amber);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.birds-list .bird-name {
  color: var(--color-navy);
  font-weight: 600;
}

.birds-list .bird-count {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-amber);
  background: var(--color-amber-light);
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  min-width: 2rem;
  text-align: center;
}

.birds-list-loading,
.birds-list-empty {
  color: var(--color-text-light);
  font-style: italic;
  font-size: 0.9rem;
  border-left: none !important;
  background: transparent !important;
  box-shadow: none !important;
  grid-column: 1 / -1;
  display: block !important;
  text-align: center;
}

.birds-section .birds-list-loading,
.birds-section .birds-list-empty {
  color: rgba(255,255,255,0.85);
}

.birds-section .attribution {
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.birds-more {
  text-align: center;
  margin-top: 1rem;
}

.attribution {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  margin: 0.75rem 0 0;
}

/* --- Sidebar: Birdsong block --- */
.sidebar-birds-intro {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.sidebar-birds {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.sidebar-birds li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.sidebar-birds li:last-child {
  border-bottom: none;
}

.sidebar-birds .bird-name {
  color: var(--color-navy);
  font-weight: 600;
}

.sidebar-birds .bird-count {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-amber);
}

/* --- Wildlife page CTA (link out to Haikubox) --- */
.wildlife-cta {
  text-align: center;
  margin: 1.5rem 0 0.5rem;
}

/* Embedded birdsong player on the Listen to the Valley page */
.valley-audio {
  display: block;
  width: 100%;
  max-width: 32rem;
  margin: 0.5rem auto 1.5rem;
}

/* --- Responsive: Header collapse (960px) --- */
@media (max-width: 960px) {
  :root {
    --header-height: 60px;
  }

  .site-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .site-brand a {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .brand-tagline {
    font-size: 1rem;
    padding-bottom: 0;
  }

  .header-social {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #1C3B1A;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .main-nav a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }

  .main-nav a.active {
    border-bottom: none;
    background: rgba(255,255,255,0.1);
  }

  /* Stats: drop to 2 columns at tablet sizes so wide tokens like
     "1 Billion" don't compete with shorter ones in 4 narrow columns. */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* --- Responsive: Tablet (768px) --- */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Concerns */
  .concerns-grid {
    grid-template-columns: 1fr;
  }

  /* Who Is Behind This teaser */
  .nebius-inner {
    grid-template-columns: 1fr;
  }

  .bhm01-image {
    order: -1;
  }

  /* Community Voices */
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* Birds */
  .birds-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list .news-card.has-image {
    grid-template-columns: 1fr;
  }

  .news-list .news-card.has-image .news-card-image img {
    aspect-ratio: 16/9;
  }

  /* Sidebar layout */
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  /* Action grid */
  .action-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-nav ul {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* --- Responsive: Mobile (480px) --- */
@media (max-width: 480px) {
  .hero-inner {
    padding: 2.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  /* Birds */
  .birds-list {
    grid-template-columns: 1fr;
  }

  /* Footer — graphic logo above the tagline; drop the text mark */
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .footer-brand {
    display: none;
  }

  .footer-logo {
    order: -1;
    height: 100px;
    margin-left: 0;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
}

/* --- Not All Data Centers --- */
.dc-lede {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin: 0 0 1.5rem;
}

.dc-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 2.5rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-amber);
}

.dc-closing {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 1.5rem 0 2rem;
}

/* Comparison table */
.dc-table-wrap {
  margin: 0 0 1.5rem;
}

.dc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.dc-table thead th {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 0.7rem 0.65rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.dc-table thead th:last-child {
  border-right: none;
}

.dc-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.dc-table tbody tr:nth-child(even) {
  background: #FAFBFC;
}

.dc-table tbody th,
.dc-table tbody td {
  padding: 0.85rem 0.65rem;
  vertical-align: top;
  text-align: left;
}

.dc-type .dc-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.25;
}

.dc-type .dc-alias {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  font-size: 0.82rem;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.dc-impact {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Rating pills */
.rating {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.2;
}

.rating-extreme {
  background: #F8D7DA;
  color: #7A1414;
}

.rating-high {
  background: #FBE0DC;
  color: #8B1A1A;
}

.rating-moderate {
  background: #FFE9B8;
  color: #8A5A00;
}

.rating-low {
  background: #D8EFD9;
  color: #1F5A2C;
}

/* Stack-to-cards on narrow screens */
@media (max-width: 720px) {
  .dc-table {
    font-size: 1rem;
  }

  .dc-table thead {
    /* Visually hidden but still in DOM for accessibility */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .dc-table tbody tr {
    display: block;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-navy);
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
  }

  .dc-table tbody tr:nth-child(even) {
    background: var(--color-white);
  }

  .dc-table tbody th.dc-type {
    display: block;
    padding: 0.5rem 0 0.6rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.4rem;
  }

  .dc-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px dotted var(--color-border);
  }

  .dc-table tbody td::before {
    content: attr(data-label);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-navy);
    flex: 0 0 auto;
  }

  .dc-table tbody td.dc-impact {
    display: block;
    border-bottom: none;
    padding-top: 0.6rem;
    color: var(--color-text-light);
    font-size: 0.92rem;
  }

  .dc-table tbody td.dc-impact::before {
    display: block;
    margin-bottom: 0.2rem;
  }

  .dc-table tbody tr td:nth-last-child(2) {
    /* The last rating row above Community Impact — remove dotted divider */
    border-bottom: none;
  }
}

/* Questions list inside cream callout box */
.dc-questions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-questions li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 0;
  line-height: 1.55;
  font-size: 0.97rem;
}

.dc-questions li::before {
  content: "\25B8"; /* ▸ */
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--color-navy);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dc-questions li strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.dc-section-heading {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-amber);
}

/* Downloads section (PDF cards) */
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 0;
}

.download-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-navy);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.download-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.download-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.download-card p:last-child {
  margin-bottom: 0;
}

.download-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0 0 0.25rem !important;
}

/* Navy public-hearing callout */
.hearing-callout {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2rem 0 0.5rem;
}

.hearing-callout p {
  margin: 0;
  color: var(--color-white);
}

.hearing-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem !important;
}

.hearing-date {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.75rem !important;
}

.hearing-where {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem !important;
}

.hearing-tag {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 480px;
  margin: 0 auto !important;
}

@media (max-width: 480px) {
  .hearing-date {
    font-size: 1.9rem;
  }

  .dc-questions li {
    font-size: 0.95rem;
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .sidebar,
  .cta-section,
  .menu-toggle {
    display: none;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .hero {
    background: #fff;
    color: #000;
    padding: 1rem 0;
  }

  .hero-content h1 {
    color: #000;
  }
}
