/* ==========================================================================
   DIA BONITO · our-hosts.css
   Meet Your Hosts: plain ink header (no photo hero, matches privacy.css),
   then two alternating portrait + full-bio profiles, then a closing panel.
   ========================================================================== */

.hosts-head {
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) var(--gutter) clamp(52px, 8vw, 88px);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.hosts-title {
  font-family: var(--serif);
  font-weight: 330;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--bone);
}

.hosts-lede {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  color: var(--bone-2);
  max-width: 620px;
  margin: 14px auto 0;
}

/* --- Profiles ------------------------------------------------------------ */

.host-profile {
  padding: clamp(56px, 9vw, 100px) var(--gutter);
}

.host-profile-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 800px) {
  .host-profile-grid {
    grid-template-columns: minmax(260px, 360px) 1fr;
  }
  /* Second profile mirrors the layout so the page doesn't feel like a list */
  .host-profile-reverse .host-profile-grid {
    grid-template-columns: 1fr minmax(260px, 360px);
  }
  .host-profile-reverse .host-portrait { order: 2; }
  .host-profile-reverse .host-bio { order: 1; }
}

/* Portrait: real photo goes here once supplied (see the MEDIA SLOT comment
   in our-hosts.html). Until then this renders as a tasteful placeholder
   card, not a broken image. */
.host-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-portrait-initial {
  font-family: var(--serif);
  font-weight: 330;
  font-size: 64px;
  color: var(--bone-2);
}

.host-name {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 20px;
}

.host-bio-body {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.8;
  color: var(--bone-2);
  max-width: 640px;
}

.host-bio-body + .host-bio-body { margin-top: 20px; }

/* --- Closing panel -------------------------------------------------------- */

[data-media-slot="hosts-closing"] .hosts-closing-backing {
  max-width: 640px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(10, 19, 16, 0.8);
}
