/* ============================================================
   about.css — the About page
   Loaded after site.css, which owns .wrap, .crumbs, .eyebrow,
   .btn and the type scale. Nothing here redefines those.
   ============================================================ */

.about { padding-bottom: 4rem; }

.about__head {
  padding: 1.5rem 0 2.25rem;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 2.25rem;
}

.about__title {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: .35rem 0 .9rem;
}

.about__blurb {
  font-family: Bitter, Georgia, serif;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  line-height: 1.6;
  max-width: 46rem;
  margin: 0;
}

.about__h2 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.05rem;
  margin: 0 0 1.4rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold, #c99700);
  display: inline-block;
}

/* ── People ───────────────────────────────────────────────── */

.about__people {
  display: grid;
  gap: 2.25rem;
}

.who {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.4rem;
  align-items: start;
}

/* No photo on disk yet — the text should not sit in a column
   waiting for an image that may never arrive. */
.who--nophoto { grid-template-columns: 1fr; }

.who__shot {
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--line-2, #e6e6e6);
  /* The three source portraits are not the same aspect ratio.
     A fixed box with object-fit keeps the row aligned without
     anyone having to crop them by hand first. */
  aspect-ratio: 4 / 5;
}

/* aspect-ratio is not universal on older mobile Safari. The
   padding trick is the fallback and costs nothing where the
   modern property already applied. */
@supports not (aspect-ratio: 4 / 5) {
  .who__shot { position: relative; padding-top: 125%; }
  .who__shot img { position: absolute; inset: 0; }
}

.who__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.who__name {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: .02em;
  margin: 0 0 .4rem;
}

.who__tag {
  font-family: Bitter, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: .95rem;
  color: var(--gold, #c99700);
  margin-left: .35rem;
}

/* The one-line characterisation under each name — italic, so it reads as
   the aside it is rather than as body copy. The nickname beside the name is
   already italic; this keeps the two voice-of-the-show elements consistent
   and separates both from the factual ND story below. */
.who__line {
  font-family: Bitter, Georgia, serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 .75rem;
}

.who__story {
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
  padding-left: .9rem;
  border-left: 3px solid var(--line-2, #e6e6e6);
  color: var(--ink-2, #4a4a4a);
}

.who__storyLabel {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .7rem;
  color: var(--gold, #c99700);
  margin-bottom: .15rem;
}

/* ── Listen ───────────────────────────────────────────────── */

.about__listen {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-2);
}

.about__listenNote {
  max-width: 42rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.about__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

@media (max-width: 600px) {
  .who { grid-template-columns: 120px 1fr; gap: 1rem; }
  .who__name { font-size: 1.15rem; }
}
