/* ==========================================================================
   SUCCESS STORY — SINGLE POST TEMPLATE
   Append to style.css after the EVENTS PAGE block.
   ========================================================================== */

/* Back navigation bar */
.story-back-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.story-back-link {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color .18s;
}

.story-back-link:hover { color: var(--ink); }

/* Hero — overrides page-hero for story context */
.story-hero {
  padding: 80px 40px 68px;
  text-align: center;
}

.story-hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 38px);
  color: var(--ink);
  line-height: 1.35;
  max-width: 26ch;
  margin: 22px auto 0;
  font-weight: 500;
  quotes: none;
}

.story-hero-name {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1;
}

.story-hero-title {
  color: var(--teal-deep);
}

.story-hero-title::before {
  content: "·";
  margin-right: 10px;
  color: var(--line);
}

/* Bio + photo split */
.story-split {
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
}

.story-portrait {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: block;
}

/* Story body copy */
.story-body {
  margin-top: 18px;
}

.story-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-dark);
  margin-top: 16px;
}

.story-body p:first-child { margin-top: 0; }

/* Outcome band */
.story-outcome-band {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

.story-outcome-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 12px;
}

.story-outcome-body {
  margin-top: 24px;
}

/* ==========================================================================
   SUCCESS STORY — RESPONSIVE
   ========================================================================== */

@media (max-width: 760px) {
  .story-hero { padding: 56px 20px 48px; }

  .story-hero-quote { font-size: clamp(22px, 5.5vw, 30px); }

  .story-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Photo moves above bio on mobile */
  .story-photo-col { order: -1; }

  .story-portrait { max-height: 320px; object-fit: cover; object-position: top; }
}

@media (max-width: 480px) {
  .story-hero-name {
    flex-direction: column;
    gap: 4px;
  }

  .story-hero-title::before { display: none; }
}

/* Video embed */
.story-video-band {
  background: var(--ink);
  padding: 56px 0;
}

.story-video {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .08);
}

.story-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}