/*
  FTN Platform Website — Face the Nation (v1.4, CLAUDE.md §7.12).
  A bounded, page-scoped dark treatment — same pattern as observatory.css and
  mission-control-demo.css. The site-wide header/footer stay light and unchanged;
  only this page's <main> uses Face the Nation's own approved broadcast identity
  (black/white/red, Bebas Neue headlines) per the show's brand guide.
*/

.ftn-show {
  background: var(--color-black);
  color: var(--color-white);
}

.ftn-show h1,
.ftn-show h2,
.ftn-show h3 {
  font-family: 'Bebas Neue', var(--font-heading);
  letter-spacing: 0.02em;
}

.ftn-show p {
  color: var(--color-silver);
  font-family: var(--font-body);
}

.ftn-show .section__eyebrow {
  color: var(--color-red-on-dark);
}

.ftn-show .founding-statement__mark {
  background: var(--color-red-on-dark);
}

.ftn-show .section--tint {
  background: var(--color-charcoal);
}

.ftn-show .section__header h2 {
  max-width: 32ch;
}

/* Button contrast on dark/red backgrounds is handled by the shared .btn-outline--on-dark /
   .btn-secondary--on-dark modifiers (buttons.css) — applied directly in the markup here. */

/* ---------------------------------------------------------------- Hero */
.ftn-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-black) url('/assets/face-the-nation/ftn-hero-master-shot.jpg') center 15% / cover no-repeat;
}

@media (min-width: 1024px) {
  .ftn-hero {
    /* More cinematic scale at desktop, where there's room for it without pushing the
       "Coming Soon" content below the fold on a typical viewport. */
    min-height: 760px;
  }
}

/* The source photo carries its own "Face the Nation" signboard — left-weighted so the
   foreground headline (which repeats that same wordmark) sits on a clean, legible field
   instead of visually colliding with the sign baked into the photo. */
.ftn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.94) 0%, rgba(11, 11, 11, 0.75) 42%, rgba(11, 11, 11, 0.35) 68%, rgba(11, 11, 11, 0.55) 100%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.55) 40%, rgba(11, 11, 11, 0.97) 100%);
}

.ftn-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-64) var(--space-48);
  max-width: 46rem;
}

.ftn-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-caption-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red-on-dark);
  margin-bottom: var(--space-16);
}

.ftn-hero__title {
  font-size: clamp(3rem, 2.2rem + 3.5vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: var(--space-8);
}

.ftn-hero__title span {
  color: var(--color-red-on-dark);
  display: block;
}

.ftn-hero__byline {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  font-weight: 600;
  color: var(--color-silver);
  margin-bottom: var(--space-16);
}

.ftn-hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-small-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-16);
}

.ftn-hero__tagline em {
  color: var(--color-red-on-dark);
  font-style: normal;
}

.ftn-hero__lede {
  font-family: var(--font-body);
  color: var(--color-silver);
  max-width: 40ch;
  margin-bottom: var(--space-32);
}

.ftn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

/* ---------------------------------------------------------------- Flow diagram */
.ftn-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--space-8);
  margin-top: var(--space-32);
}

.ftn-flow__node {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-8);
}

.ftn-flow__node img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.ftn-flow__node span {
  font-family: var(--font-body);
  font-size: var(--text-caption-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-silver);
}

.ftn-flow__arrow {
  display: flex;
  align-items: center;
  color: var(--color-red-on-dark);
  font-size: var(--text-h3-size);
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .ftn-flow {
    flex-direction: column;
  }

  .ftn-flow__arrow {
    transform: rotate(90deg);
    align-self: center;
  }
}

/* ---------------------------------------------------------------- Coming Soon panel (hero-adjacent) */
.ftn-coming-soon-panel {
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-16);
  padding: var(--space-32);
}

.ftn-coming-soon-panel__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-caption-size);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red-on-dark);
}

.ftn-coming-soon-panel h2 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  margin-block: var(--space-8) var(--space-16);
}

.ftn-coming-soon-panel p {
  color: var(--color-silver);
  font-family: var(--font-body);
}

/* ---------------------------------------------------------------- Participation + Programming cards (dark variant of module-card) */
.ftn-card {
  padding: var(--space-24);
  border-radius: var(--radius-16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-charcoal);
}

.ftn-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  margin-bottom: var(--space-8);
}

.ftn-card p {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: var(--text-small-size);
  margin-bottom: var(--space-16);
}

.ftn-programming-grid {
  display: grid;
  gap: var(--space-16);
  grid-template-columns: 1fr;
}

.ftn-programming-card {
  padding: var(--space-20);
  border-radius: var(--radius-12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ftn-programming-card__status {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-caption-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-silver);
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-12);
}

.ftn-programming-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  margin-bottom: var(--space-8);
}

.ftn-programming-card p {
  font-family: var(--font-body);
  color: var(--color-silver);
  font-size: var(--text-small-size);
}

@media (min-width: 768px) {
  .ftn-programming-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ftn-programming-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------------------------------------------------------- Closing Community Connect band */
.ftn-cc-band {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: center;
  text-align: center;
  padding: var(--space-48) var(--space-24);
  background: var(--color-red);
  border-radius: var(--radius-24);
}

.ftn-cc-band h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
}

.ftn-cc-band p {
  font-family: var(--font-body);
  color: var(--color-white);
  max-width: 52ch;
}

@media (min-width: 768px) {
  .ftn-cc-band {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

/* ---------------------------------------------------------------- Badge logo */
.ftn-badge {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: var(--space-24);
  border: 2px solid var(--color-red-on-dark);
  box-shadow: var(--shadow-xl);
}
