/* ==================================================
   ARTICLE PAGE STYLES
   Editorial single-column layout with accent bars,
   pull quotes, stat callouts, series navigation.
   ================================================== */

/* ==================================================
   ARTICLE PROGRESS BAR
   ================================================== */

.article-progress {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 99;
  background: transparent;
}

.article-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--accent, var(--catalyst-teal));
  transition: width 0.1s linear;
}

/* ==================================================
   STICKY SERIES CONTEXT BAR
   ================================================== */

.article-series-bar {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 98;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgb(245, 243, 240, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.article-series-bar--visible {
  transform: translateY(0);
  opacity: 1;
}

.article-series-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-series-bar__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--carbon);
}

.article-series-bar__divider {
  width: 1px;
  height: 14px;
  background: var(--border-hover);
}

.article-series-bar__series-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.article-series-bar__series-btn:hover {
  color: var(--carbon);
  background: rgb(26, 26, 26, 0.04);
}

.article-series-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, var(--catalyst-teal));
  flex-shrink: 0;
}

.article-series-bar__chevron {
  width: 10px;
  height: 10px;
  stroke: currentcolor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.article-series-bar__series-btn.is-open .article-series-bar__chevron {
  transform: rotate(180deg);
}

.article-series-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-series-bar__position {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.article-series-bar__pips {
  display: flex;
  gap: 4px;
}

.article-series-bar__pip {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--border-hover);
  transition: background 0.3s;
}

.article-series-bar__pip--active {
  background: var(--accent, var(--catalyst-teal));
}

.article-series-bar__pip--done {
  background: var(--carbon);
}

/* ==================================================
   SERIES FLYOUT PANEL
   ================================================== */

.article-flyout {
  position: fixed;
  top: 98px;
  left: 0;
  right: 0;
  z-index: 97;
  background: rgb(20, 20, 20, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 0 48px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease;
}

.article-flyout.is-open {
  max-height: 520px;
  padding: 36px 48px 40px;
}

.article-flyout__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.article-flyout__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, var(--catalyst-teal));
}

.article-flyout__browse {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.article-flyout__browse:hover {
  color: rgb(255, 255, 255, 0.7);
}

.article-flyout__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.article-flyout__card {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  background: rgb(255, 255, 255, 0.03);
  border: 1px solid rgb(255, 255, 255, 0.06);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.article-flyout.is-open .article-flyout__card {
  opacity: 1;
  transform: translateY(0);
}

.article-flyout.is-open .article-flyout__card:nth-child(1) { transition-delay: 0.06s; }
.article-flyout.is-open .article-flyout__card:nth-child(2) { transition-delay: 0.1s; }
.article-flyout.is-open .article-flyout__card:nth-child(3) { transition-delay: 0.14s; }
.article-flyout.is-open .article-flyout__card:nth-child(4) { transition-delay: 0.18s; }
.article-flyout.is-open .article-flyout__card:nth-child(5) { transition-delay: 0.22s; }
.article-flyout.is-open .article-flyout__card:nth-child(6) { transition-delay: 0.26s; }

.article-flyout__card:hover {
  background: rgb(255, 255, 255, 0.06);
  border-color: rgb(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.article-flyout__card--current {
  border-color: var(--accent, var(--catalyst-teal));
  background: rgb(91, 170, 157, 0.06);
}

.article-flyout__card-ghost {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: rgb(255, 255, 255, 0.03);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.article-flyout__card-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgb(255, 255, 255, 0.25);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-flyout__card-badge {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--accent, var(--catalyst-teal));
  padding: 2px 6px;
  border-radius: 3px;
}

.article-flyout__card-title {
  font-size: 13px;
  font-weight: 300;
  color: rgb(255, 255, 255, 0.6);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.article-flyout__card--current .article-flyout__card-number {
  color: var(--accent, var(--catalyst-teal));
}

.article-flyout__card--current .article-flyout__card-title {
  color: rgb(255, 255, 255, 0.9);
  font-weight: 400;
}

.article-flyout__other {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgb(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 24px;
}

.article-flyout__other-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255, 255, 255, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.article-flyout__other-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.article-flyout__other-link {
  font-size: 11px;
  font-weight: 300;
  color: rgb(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.article-flyout__other-link:hover {
  color: rgb(255, 255, 255, 0.8);
}

.article-flyout__other-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.article-flyout__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.3);
  z-index: 96;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.article-flyout__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ==================================================
   ARTICLE HERO — editorial, title-first, no circle
   ================================================== */

.article-hero {
  position: relative;
  padding: 64px 40px 32px;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
}

.article-hero__series {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-hero__series-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--catalyst-teal));
}

.article-hero__series-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-hero__series-label a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.article-hero__series-label a:hover {
  color: var(--carbon);
}

.article-hero__reading {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Title — editorial prominence, no circle */
.article-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--carbon);
  margin: 24px 0 16px;
}

.article-hero__title strong {
  font-weight: 700;
}

/* Monospaced deck / subtitle */
.article-hero__deck {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-bottom: 24px;
}

.article-hero__lede {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Scroll indicator */
.article-hero__scroll {
  padding: 48px 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-hero__scroll-line {
  width: 32px;
  height: 1px;
  background: var(--border-hover);
}

.article-hero__scroll-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==================================================
   EDITORIAL HERO — full-width image layout
   Activated via .article-hero--editorial class when
   a post has a featured image or ACF hero_image.
   ================================================== */

.article-hero--editorial {
  position: relative;
  max-width: none;
  padding: 0;
  margin: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.article-hero__editorial-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

/* Soft fade from content area into image */
.article-hero__editorial-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: linear-gradient(to right, var(--bg) 20%, transparent);
  z-index: 1;
}

.article-hero__editorial-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 120px 0 80px 80px;
}

.article-hero--editorial .article-hero__title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 32px 0 24px;
}

.article-hero--editorial .article-hero__deck {
  max-width: 440px;
}

.article-hero--editorial .article-hero__meta {
  padding: 0;
  justify-content: flex-start;
  gap: 24px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .article-hero--editorial {
    flex-direction: column;
    min-height: auto;
  }

  .article-hero__editorial-bg {
    position: relative;
    width: 100%;
    height: 320px;
    order: -1;
  }

  .article-hero__editorial-bg::before {
    display: none;
  }

  .article-hero__editorial-content {
    padding: 32px 24px 48px;
    max-width: none;
  }

  .article-hero--editorial .article-hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }
}

@media (max-width: 480px) {
  .article-hero__editorial-bg {
    height: 240px;
  }

  .article-hero__editorial-content {
    padding: 24px 20px 40px;
  }
}

/* ==================================================
   EDITORIAL BODY — single-column, accent-bar
   ================================================== */

/* ── Article body layout wrapper ── */
.article-body__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

.article-body__main {
  min-width: 0;
}

.article-body__sidebar {
  display: none; /* Sidebar stats/quotes are inline on single-column layout */
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 40px 48px;
}

.article-body__section {
  border-left: 3px solid var(--accent, var(--catalyst-teal));
  padding-left: 32px;
  margin-bottom: 28px;
}

.article-body__section--no-bar {
  border-left: 3px solid transparent;
}

.article-body__paragraph {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-body__paragraph:last-child {
  margin-bottom: 0;
}

.article-body__paragraph strong {
  font-weight: 700;
  color: var(--carbon);
}

/* Drop cap on first paragraph */
.article-body__paragraph--drop::first-letter {
  float: left;
  font-size: 72px;
  font-weight: 300;
  line-height: 0.78;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--accent, var(--catalyst-teal));
}

/* Stat callout — centered between body sections */
.article-body__stat {
  text-align: center;
  padding: 32px 0;
  margin-bottom: 28px;
}

.article-body__stat-number {
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 300;
  color: var(--carbon);
  letter-spacing: -0.04em;
  line-height: 1;
}

.article-body__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.article-body__stat-divider {
  width: 40px;
  height: 2px;
  background: var(--accent, var(--catalyst-teal));
  margin: 20px auto;
}

/* Pull quote — editorial break */
.article-body__quote {
  padding: 28px 0;
  margin-bottom: 28px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.article-body__quote-rule {
  width: 40px;
  height: 2px;
  background: var(--accent, var(--catalyst-teal));
  margin: 0 auto 24px;
}

.article-body__quote-text {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--carbon);
  letter-spacing: -0.01em;
}

.article-body__quote-text em {
  font-style: normal;
  color: var(--accent, var(--catalyst-teal));
  font-weight: 400;
}

/* Closing paragraph */
.article-body__closing {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* ==================================================
   BOTTOM PILLS — One More Thing + GLP-3 CTA
   ================================================== */

.article-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 16px;
  max-width: 820px;
  margin: 36px auto;
  padding: 0 40px;
}

.article-pills__aside {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.article-pills__aside-accent {
  position: absolute;
  top: 0;
  left: 36px;
  width: 40px;
  height: 2px;
  background: var(--accent, var(--catalyst-teal));
}

.article-pills__aside-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--catalyst-teal));
  margin-bottom: 20px;
}

.article-pills__aside-text {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgb(255, 255, 255, 0.65);
  letter-spacing: -0.01em;
}

/* Right pill — product CTA */
.article-pills__cta {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.article-pills__cta:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgb(26, 26, 26, 0.06);
}

.article-pills__cta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--catalyst-teal);
  margin-bottom: 20px;
}

.article-pills__cta-headline {
  font-size: 20px;
  font-weight: 600;
  color: var(--carbon);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.article-pills__cta-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.article-pills__cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.article-pills__btn {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hover);
  color: var(--carbon);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.article-pills__btn:hover {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}

.article-pills__btn--solid {
  background: var(--catalyst-orange);
  color: var(--white);
  border-color: var(--catalyst-orange);
  font-weight: 500;
}

.article-pills__btn--solid:hover {
  background: #d4551f;
  border-color: #d4551f;
}

/* ==================================================
   SERIES PROGRESS — light grid at bottom
   ================================================== */

.article-series-progress {
  background: var(--surface-warm);
  padding: 44px 80px 52px;
  position: relative;
  overflow: hidden;
}

.article-series-progress::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 98, 46, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.article-series-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.article-series-progress__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--catalyst-teal));
}

.article-series-progress__count {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.article-series-progress__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.article-series-progress__item {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  overflow: hidden;
}

.article-series-progress__item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 16px rgb(26, 26, 26, 0.06);
  transform: translateY(-2px);
}

.article-series-progress__item-ghost {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: rgb(26, 26, 26, 0.03);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.article-series-progress__item-number {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.article-series-progress__item-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent, var(--catalyst-teal));
  padding: 2px 6px;
  border-radius: 3px;
}

.article-series-progress__item-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

/* Current article — accent highlight */
.article-series-progress__item--current {
  border-color: var(--accent, var(--catalyst-teal));
  background: rgb(91, 170, 157, 0.04);
}

.article-series-progress__item--current .article-series-progress__item-number {
  color: var(--accent, var(--catalyst-teal));
}

.article-series-progress__item--current .article-series-progress__item-title {
  color: var(--carbon);
  font-weight: 500;
}

.article-series-progress__item--current .article-series-progress__item-ghost {
  color: rgb(91, 170, 157, 0.06);
}

/* Next article — slightly darker text */
.article-series-progress__item--next .article-series-progress__item-title {
  color: var(--carbon);
  font-weight: 400;
}

/* ==================================================
   RESPONSIVE — TABLET
   ================================================== */

@media (width <= 1024px) {
  .article-hero {
    padding: 56px 32px 28px;
  }

  .article-body {
    padding: 28px 32px 40px;
  }

  .article-body__section {
    padding-left: 24px;
  }

  .article-pills {
    padding: 0 32px;
    margin: 28px auto;
    gap: 12px;
  }

  .article-pills__aside {
    padding: 28px 32px;
  }

  .article-pills__cta {
    padding: 28px 32px;
  }

  .article-series-progress {
    padding: 40px 40px 48px;
  }

  .article-series-progress__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-series-bar {
    padding: 0 24px;
  }

  .article-flyout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .article-flyout.is-open {
    padding: 28px 24px 32px;
  }

  .article-flyout__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-series-bar__series-btn {
    min-height: 44px;
    padding: 8px 14px;
  }
}

/* ==================================================
   RESPONSIVE — MOBILE
   ================================================== */

@media (width <= 768px) {
  .article-hero {
    padding: 48px 24px 24px;
  }

  .article-hero__title {
    font-size: clamp(32px, 7vw, 44px);
    margin: 20px 0 14px;
  }

  .article-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .article-hero__deck {
    font-size: 13px;
  }

  .article-body {
    padding: 24px 24px 32px;
  }

  .article-body__section {
    padding-left: 20px;
  }

  .article-body__paragraph {
    font-size: 15px;
  }

  .article-body__quote-text {
    font-size: 20px;
  }

  .article-pills {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px auto;
  }

  .article-pills__aside {
    padding: 24px;
    border-radius: 16px;
  }

  .article-pills__cta {
    padding: 24px;
    border-radius: 16px;
  }

  .article-pills__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-pills__btn {
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .article-series-progress {
    padding: 32px 24px 40px;
  }

  .article-series-progress__list {
    grid-template-columns: 1fr;
  }

  .article-series-bar {
    padding: 0 16px;
    padding-top: env(safe-area-inset-top, 0);
  }

  .article-series-bar__title {
    display: none;
  }

  .article-series-bar__divider {
    display: none;
  }

  .article-series-bar__series-btn {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .article-series-bar__position {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .article-flyout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-flyout.is-open {
    padding: 24px 16px 28px;
  }

  .article-flyout__grid {
    grid-template-columns: 1fr;
  }

  .article-flyout__other {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (width <= 480px) {
  .article-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .article-hero__title {
    font-size: clamp(28px, 8vw, 36px);
    margin: 16px 0 12px;
    line-height: 1.12;
  }

  .article-hero__deck {
    font-size: 12px;
  }

  .article-body {
    padding: 28px 16px 24px;
  }

  .article-body__section {
    padding-left: 16px;
  }

  .article-body__paragraph {
    font-size: 14px;
    line-height: 1.8;
  }

  .article-body__stat-number {
    font-size: clamp(48px, 10vw, 72px);
  }

  .article-body__quote-text {
    font-size: 18px;
  }

  .article-pills {
    padding: 0 16px;
  }

  .article-pills__aside {
    padding: 20px;
  }

  .article-pills__cta {
    padding: 20px;
  }

  .article-series-progress {
    padding: 28px 16px 36px;
  }
}
