/* About page. The prose that used to sit below the home hero, now a page
   of its own: the show, the Two Ages plate, the hosts and the book, on a
   calm vellum scroll. Shared ornaments (rubric label, fleuron rule, the
   plate frame) live in base.css. */

/* ===================== SHARED SECTION RHYTHM ===================== */
.about, .two-ages, .hosts, .book {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}
.two-ages, .book { background: var(--vellum-deep); }
.about-head .rubric-label,
.two-ages > .rubric-label { display: inline-block; }

/* ============================ ABOUT ============================ */
.about {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
/* The page head, in the episodes-page register: rubric kicker, Cardo
   heading, fleuron rule. */
.about-head .rubric-label { margin-bottom: .875rem; }
.about-head h1 {
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 1rem;
}
.about-body { margin-top: 2.25rem; text-align: left; }
.about-body p { margin-bottom: 1.125rem; color: var(--ink-soft); }
.about-body p:last-child { margin-bottom: 0; }
/* The incipit: a rubricated drop cap opening the first paragraph, the
   manuscript conceit carried into the body. */
.incipit { color: var(--ink); font-size: 1.18rem; }
.incipit::first-letter {
  font-family: 'Cardo', serif;
  font-size: 3.4em;
  line-height: .82;
  color: var(--rubric);
  float: left;
  padding: .06em .14em 0 0;
}

/* ========================== TWO AGES ========================== */
.two-ages { text-align: center; }
.two-ages > .rubric-label { margin-bottom: 1.75rem; }
.two-ages-plate { max-width: 36rem; margin: 0 auto; }
.two-ages .gloss {
  max-width: 32rem;
  margin: 1.75rem auto 0;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* =========================== HOSTS =========================== */
.hosts { max-width: 72.5rem; margin: 0 auto; }
.hosts-head { text-align: center; margin-bottom: 3rem; }
.hosts-head h2 {
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-top: .75rem;
}
.host-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 760px) { .host-list { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }
.host {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold);
  position: relative;
}
/* A small gold fleuron astride each host's top rule. */
.host::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: .8rem;
  height: .8rem;
  transform: translate(-50%, -50%);
  background: var(--vellum);
  box-shadow: 0 0 0 .35rem var(--vellum);
}
.host::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: .8rem;
  height: .8rem;
  transform: translate(-50%, -50%);
  background: var(--gold);
  -webkit-mask: var(--fleur-mask) center / contain no-repeat;
  mask: var(--fleur-mask) center / contain no-repeat;
}
.host-name {
  font-family: 'Cardo', serif;
  font-size: 1.4rem;
  color: var(--lapis);
}
.host-role {
  color: var(--gold-ink);
  font-size: .82rem;
  margin-top: .25rem;
}
.host-where {
  margin-top: .625rem;
  color: var(--ink);
  font-size: 1rem;
}
.host-loc { display: block; color: var(--ink-soft); font-style: italic; font-size: .95rem; }
.host-note {
  margin-top: .875rem;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6;
}
/* The lead host carries a touch more weight: a rubric versal initial. */
.host-lead .host-name::first-letter { color: var(--rubric); }

/* ============================ BOOK ============================ */
.book-inner {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 15rem) 1fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 680px) {
  .book-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-text { text-align: center; }
}
.book-plate { width: 100%; max-width: 15rem; }
.book-plate a { display: block; border: 0; }
.book-name {
  font-family: 'Cardo', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--lapis);
  margin-top: .75rem;
  line-height: 1.15;
}
.book-sub { font-style: italic; color: var(--ink-soft); margin-top: .5rem; }
.book-by {
  font-variant: small-caps;
  letter-spacing: .08em;
  color: var(--gold-ink);
  font-size: .9rem;
  margin-top: .75rem;
}
.book-text > p { color: var(--ink-soft); margin-top: 1rem; }
.book-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--lapis);
  font-variant: small-caps;
  letter-spacing: .12em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.book-link:hover { color: var(--gold-ink); }
