:root {
  --post-max: 1160px;
  --post-body: 720px;
  --post-serif: 'Lora', Georgia, serif;
  --post-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.story-shell {
  background: #fff;
}

.story-hero {
  padding: 3.5rem 2rem 2.75rem;
  border-bottom: 1px solid var(--border, #e2ddd8);
  background:
    radial-gradient(circle at top right, rgba(191, 87, 0, 0.09), transparent 32%),
    linear-gradient(180deg, #fbfaf8 0%, #ffffff 72%);
}

.story-hero-inner {
  max-width: var(--post-max);
  margin: 0 auto;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange, #bf5700);
  margin-bottom: 1rem;
}

.story-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

.story-title {
  max-width: 900px;
  margin: 0;
  font: 700 clamp(2.5rem, 5vw, 4.8rem)/0.98 var(--post-sans);
  letter-spacing: -0.05em;
  color: #171412;
}

.story-dek {
  max-width: 760px;
  margin-top: 1.4rem;
  font: 400 1.22rem/1.7 var(--post-serif);
  color: #4a433d;
}

.story-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  color: #6b6560;
  font: 600 0.9rem/1.4 var(--post-sans);
}

.story-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8c0b8;
}

.story-lead {
  padding: 1.75rem 2rem 0;
}

.story-lead-inner {
  max-width: var(--post-max);
  margin: 0 auto;
}

.story-hero-media {
  max-width: var(--post-max);
  margin: 0 auto;
  padding-top: 1.25rem;
}

.story-hero-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
  object-fit: cover;
}

.story-hero-caption {
  margin-top: 0.75rem;
  color: #7a736d;
  font: 500 0.82rem/1.55 var(--post-sans);
}

.story-lead-art {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 50%, rgba(191, 87, 0, 0.34), transparent 34%),
    radial-gradient(circle at 80% 35%, rgba(27, 42, 59, 0.92), transparent 42%),
    linear-gradient(130deg, #111111 0%, #1b2a3b 42%, #f3efe9 100%);
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}

.story-lead-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  pointer-events: none;
}

.story-lead-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.story-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 164, 97, 0.35);
  background: rgba(191, 87, 0, 0.14);
  color: #f5a461;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-lead-copy h2 {
  margin: 1rem 0 0.6rem;
  font: 700 clamp(1.8rem, 3vw, 2.6rem)/1.05 var(--post-sans);
  letter-spacing: -0.04em;
  color: #fff;
}

.story-lead-copy p {
  color: rgba(255, 255, 255, 0.78);
  font: 400 1rem/1.7 var(--post-sans);
}

.story-layout {
  max-width: var(--post-max);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 220px minmax(0, var(--post-body));
  gap: 4rem;
  justify-content: center;
}

.story-rail {
  position: sticky;
  top: 116px;
  align-self: start;
}

.story-rail-section + .story-rail-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.story-rail-label {
  margin-bottom: 0.65rem;
  color: #8a837b;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-rail-value,
.story-rail-list a,
.story-rail-list span {
  display: block;
  color: #221f1c;
  font: 500 0.93rem/1.55 var(--post-sans);
}

.story-rail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.story-rail-list a,
.story-rail-list span {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: #f6f3ef;
  border: 1px solid #e4ddd4;
}

.story-body {
  min-width: 0;
}

.story-body > * + * {
  margin-top: 1.55rem;
}

.story-body p,
.story-body li {
  color: #221f1c;
  font: 400 1.14rem/1.9 var(--post-serif);
}

.story-body p.story-intro {
  font-size: 1.28rem;
  line-height: 1.85;
  color: #1d1a18;
}

.story-body p.story-intro::first-letter {
  float: left;
  margin: 0.12em 0.12em 0 0;
  color: var(--orange, #bf5700);
  font: 700 4.4rem/0.78 var(--post-sans);
}

.story-body h2 {
  margin-top: 3rem;
  color: #181513;
  font: 700 clamp(1.55rem, 2vw, 2rem)/1.15 var(--post-sans);
  letter-spacing: -0.03em;
}

.story-body ul {
  padding-left: 1.2rem;
}

.story-body li + li {
  margin-top: 0.65rem;
}

.story-callout,
.story-next {
  padding: 1.35rem 1.45rem;
  border: 1px solid #e7e0d7;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfaf8 0%, #f6f2ec 100%);
}

.story-callout strong,
.story-next strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #1b1815;
  font: 700 0.92rem/1.4 var(--post-sans);
  letter-spacing: 0.02em;
}

.story-pullquote {
  margin: 3rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 4px solid var(--orange, #bf5700);
}

.story-pullquote p {
  color: #181513;
  font: 600 1.65rem/1.5 var(--post-serif);
}

.story-embed {
  margin: 2.5rem 0;
}

.story-embed-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: #0f0f10;
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
  aspect-ratio: 16 / 9;
}

.story-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.story-embed-caption {
  margin-top: 0.75rem;
  color: #7a736d;
  font: 500 0.82rem/1.55 var(--post-sans);
}

.story-resources {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.story-resources-title {
  margin-bottom: 0.9rem;
  font: 700 0.82rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a837b;
}

.story-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.story-resource-links a {
  color: var(--orange, #bf5700);
  font: 600 0.95rem/1.4 var(--post-sans);
  text-decoration: none;
}

.story-resource-links a:hover {
  text-decoration: underline;
}

.story-ai-assisted {
  margin-top: 2.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #e4ddd4;
  background: #faf7f3;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.story-ai-assisted-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 87, 0, 0.1);
  color: var(--orange, #bf5700);
  font: 700 1rem/1 var(--post-sans);
}

.story-ai-assisted-label {
  color: #171412;
  font: 700 0.8rem/1.2 var(--post-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.story-ai-assisted-copy p {
  margin: 0;
  color: #5b544d;
  font: 400 0.9rem/1.6 var(--post-sans);
}

.story-footer-band {
  margin-top: 3.25rem;
  padding: 2rem 2.2rem;
  border-radius: 24px;
  background: #111111;
  color: #fff;
}

.story-footer-band h3 {
  margin-bottom: 0.65rem;
  font: 700 1.55rem/1.15 var(--post-sans);
  letter-spacing: -0.03em;
}

.story-footer-band p {
  color: rgba(255, 255, 255, 0.72);
  font: 400 0.98rem/1.7 var(--post-sans);
}

.story-footer-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.story-btn-primary,
.story-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  font: 600 0.92rem/1 var(--post-sans);
}

.story-btn-primary {
  background: var(--orange, #bf5700);
  color: #fff;
}

.story-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.story-btn-primary:hover,
.story-btn-secondary:hover {
  transform: translateY(-1px);
}

.updates-shell {
  background: linear-gradient(180deg, #fcfbf9 0%, #fff 16%);
}

.updates-hero {
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
}

.updates-hero-inner,
.updates-main {
  max-width: var(--post-max);
  margin: 0 auto;
}

.updates-hero-media {
  margin: 0 0 1.8rem;
}

.updates-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.updates-hero-caption {
  margin-top: 0.75rem;
  color: #6b6560;
  font: 500 0.82rem/1.5 var(--post-sans);
}

.updates-monthline {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.updates-month-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(145deg, #111111 0%, #1b2a3b 78%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

.updates-month-label {
  color: rgba(255,255,255,0.62);
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.updates-month-value {
  margin-top: 0.65rem;
  font: 700 clamp(2.2rem, 5vw, 3.6rem)/0.95 var(--post-sans);
  letter-spacing: -0.06em;
}

.updates-month-sub {
  margin-top: 0.9rem;
  color: rgba(255,255,255,0.72);
  font: 500 0.92rem/1.6 var(--post-sans);
}

.updates-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange, #bf5700);
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.updates-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

.updates-title {
  margin: 0.9rem 0 0;
  color: #151210;
  font: 700 clamp(2.4rem, 4vw, 4.2rem)/0.96 var(--post-sans);
  letter-spacing: -0.05em;
}

.updates-dek {
  max-width: 780px;
  margin-top: 1rem;
  color: #4a433d;
  font: 400 1.1rem/1.8 var(--post-serif);
}

.updates-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: #6b6560;
  font: 600 0.9rem/1.5 var(--post-sans);
}

.updates-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.updates-stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f6f2ec;
  border: 1px solid #e7dfd4;
}

.updates-stat-value {
  color: #171412;
  font: 700 1.7rem/1 var(--post-sans);
  letter-spacing: -0.04em;
}

.updates-stat-label {
  margin-top: 0.35rem;
  color: #6b6560;
  font: 600 0.82rem/1.5 var(--post-sans);
}

.updates-main {
  padding: 2.5rem 2rem 5rem;
}

.updates-intro {
  max-width: 760px;
  color: #221f1c;
  font: 400 1.12rem/1.9 var(--post-serif);
}

.updates-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.update-card {
  border: 1px solid #e6dfd6;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.05);
}

.update-card-top {
  padding: 1.4rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(23,20,18,0.06);
  background: linear-gradient(180deg, #fcfaf7 0%, #fff 100%);
}

.update-index {
  color: var(--orange, #bf5700);
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.update-title {
  margin-top: 0.65rem;
  color: #181513;
  font: 700 clamp(1.35rem, 2vw, 1.75rem)/1.15 var(--post-sans);
  letter-spacing: -0.03em;
}

.update-meta {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.update-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: #f6f2ec;
  border: 1px solid #e4ddd4;
  color: #514a44;
  font: 600 0.78rem/1.4 var(--post-sans);
}

.update-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.update-summary {
  color: #221f1c;
  font: 600 1rem/1.75 var(--post-sans);
}

.update-card-body p {
  margin-top: 0.9rem;
  color: #3f3934;
  font: 400 1rem/1.8 var(--post-sans);
}

.updates-footer-band {
  margin-top: 2.2rem;
}

.podcast-shell {
  background:
    radial-gradient(circle at top left, rgba(191,87,0,0.16), transparent 32%),
    linear-gradient(180deg, #0c1016 0%, #121924 22%, #f7f2eb 22%, #fff 100%);
}

.podcast-hero {
  padding: 3rem 2rem 2.4rem;
  color: #fff;
}

.podcast-hero-inner,
.podcast-body-shell {
  max-width: var(--post-max);
  margin: 0 auto;
}

.podcast-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: end;
}

.podcast-kicker,
.podcast-episode-line {
  color: rgba(255,255,255,0.76);
  font: 700 0.78rem/1 var(--post-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.podcast-episode-line {
  margin-top: 1rem;
  color: #ffb875;
}

.podcast-title {
  margin-top: 0.8rem;
  font: 700 clamp(2.8rem, 5vw, 4.8rem)/0.95 var(--post-sans);
  letter-spacing: -0.06em;
}

.podcast-dek {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.86);
  font: 400 1.08rem/1.8 var(--post-serif);
}

.podcast-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: rgba(255,255,255,0.68);
  font: 600 0.88rem/1.5 var(--post-sans);
}

.podcast-listen-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.podcast-embed {
  margin-top: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.podcast-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.podcast-listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font: 700 0.9rem/1 var(--post-sans);
}

.podcast-listen-primary {
  background: var(--orange, #bf5700);
  color: #fff;
}

.podcast-listen-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
}

.podcast-player-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(18, 25, 36, 0.96) 0%, rgba(29, 37, 50, 0.92) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.podcast-player-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(191,87,0,0.2);
  color: #ffb875;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcast-player-title {
  margin-top: 1rem;
  color: #ffffff;
  font: 700 1.45rem/1.15 var(--post-sans);
}

.podcast-player-summary {
  margin-top: 0.9rem;
  color: rgba(255,255,255,0.82);
  font: 400 0.98rem/1.75 var(--post-sans);
}

.podcast-player-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.68);
  font: 600 0.82rem/1.4 var(--post-sans);
}

.podcast-body-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  padding: 2.6rem 2rem 5rem;
}

.podcast-rail {
  position: sticky;
  top: 132px;
  align-self: start;
}

.podcast-rail-card + .podcast-rail-card {
  margin-top: 1rem;
}

.podcast-rail-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eadfd1;
}

.podcast-rail-label {
  color: #6b6560;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcast-rail-value {
  margin-top: 0.55rem;
  color: #171412;
  font: 600 0.95rem/1.5 var(--post-sans);
}

.podcast-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.podcast-highlight {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #f8f3ec;
  border: 1px solid #eadfd1;
}

.podcast-highlight-label {
  color: #6b6560;
  font: 700 0.72rem/1 var(--post-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcast-highlight-value {
  margin-top: 0.45rem;
  color: #171412;
  font: 700 1.05rem/1.45 var(--post-sans);
}

.podcast-intro {
  margin-top: 1.5rem;
  max-width: 760px;
  color: #2b241f;
  font: 400 1.12rem/1.9 var(--post-serif);
}

.podcast-section-block {
  max-width: 760px;
  margin-top: 2rem;
}

.podcast-section-block h2 {
  color: #171412;
  font: 700 1.8rem/1.1 var(--post-sans);
  letter-spacing: -0.04em;
}

.podcast-section-block p,
.podcast-section-block li {
  margin-top: 0.85rem;
  color: #3f3934;
  font: 400 1rem/1.85 var(--post-sans);
}

.podcast-section-block ul {
  padding-left: 1.2rem;
}

.podcast-footer-band {
  margin-top: 2.5rem;
}

@media (max-width: 980px) {
  .story-layout {
    grid-template-columns: minmax(0, var(--post-body));
    gap: 2rem;
  }

  .story-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }

  .story-rail-section + .story-rail-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .updates-monthline {
    grid-template-columns: 1fr;
  }

  .podcast-hero-inner,
  .podcast-body-shell {
    grid-template-columns: 1fr;
  }

  .podcast-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .podcast-rail-card + .podcast-rail-card {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .story-hero,
  .story-lead,
  .story-layout {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .story-hero-media {
    padding-top: 1rem;
  }

  .story-lead-art {
    min-height: 300px;
    border-radius: 18px;
    padding: 1.4rem;
  }

  .story-rail {
    grid-template-columns: 1fr;
  }

  .story-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .story-body p,
  .story-body li {
    font-size: 1.04rem;
  }

  .story-body p.story-intro {
    font-size: 1.12rem;
  }

  .story-pullquote p {
    font-size: 1.35rem;
  }

  .updates-hero,
  .updates-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .updates-hero-image {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .podcast-hero,
  .podcast-body-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .podcast-rail {
    grid-template-columns: 1fr;
  }
}
