/* ============================================================
   buyer-guide.css — small additions for the buyer's guide page.
   Reuses the buyer-portal dialect (product.css + buyer.css tokens
   and base classes: .nav .hero .band .wrap .band-head .settle .btn).
   This file styles ONLY the guide-specific blocks: the media cards,
   the three-column listing read, the journey steps, the design
   call-out, and the footer. Token-driven, so it follows the theme.
   ============================================================ */

/* Hero: a touch shorter than the portal hero so the "Watch" band peeks. */
.hero-guide { min-height: clamp(520px, 78vh, 760px); }

/* ---- Watch / listen --------------------------------------- */
.guide-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 32px);
  margin-top: 8px;
}
.guide-media-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(16px, 2.4vw, 26px);
  box-shadow: 0 14px 40px rgba(13, 110, 104, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-media-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}
/* The video fills its card; honest note holds the space until the file lands. */
.guide-video, .guide-audio { width: 100%; }
.guide-video video {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #0d1413;
  aspect-ratio: 16 / 9;
}
.guide-audio audio { width: 100%; display: block; }
/* keep the audio card aligned with the taller video card */
.guide-media-card .guide-audio { margin-top: auto; }
.guide-media-note {
  color: var(--ink-3);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--cream-2);
}
.guide-credit {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}

/* ---- 1 · reading a listing (three columns) ---------------- */
.guide-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.guide-col {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(18px, 2.2vw, 26px);
}
.guide-col h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.guide-col p { color: var(--ink-2); line-height: 1.7; margin: 0; }
.guide-list { margin: 0; padding-left: 18px; color: var(--ink-2); line-height: 1.8; }
.guide-list li { margin-bottom: 6px; }

/* ---- 2 · the journey (numbered steps) --------------------- */
.guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 820px;
}
.guide-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(16px, 2vw, 24px);
}
.guide-step-n {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-step h4 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 2px 0 6px;
  color: var(--ink);
}
.guide-step p { color: var(--ink-2); line-height: 1.7; margin: 0; }

/* ---- 3 · design your home (call-out) ---------------------- */
.guide-design {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.guide-design-copy p { color: var(--ink-2); line-height: 1.75; margin: 0 0 14px; }
.guide-design-copy .btn { margin-top: 8px; }
.guide-design-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, var(--teal-pale), var(--cream-2));
  border: 1px solid var(--line-soft);
}
.guide-design-glyph { font-size: 96px; color: var(--teal); opacity: 0.55; }

/* ---- footer ----------------------------------------------- */
.guide-footer { text-align: center; }
.guide-foot-note { margin-top: 10px; color: var(--ink-3); font-size: 13px; }

/* ---- responsive ------------------------------------------- */
@media (max-width: 860px) {
  .guide-media { grid-template-columns: 1fr; }
  .guide-cols { grid-template-columns: 1fr; }
  .guide-design { grid-template-columns: 1fr; }
  .guide-design-art { min-height: 160px; order: -1; }
}
