/* ==========================================================================
   THE REHAB REPORT — Shared Stylesheet
   ========================================================================== */

:root {
  /* Color tokens */
  --navy: #0D2B55;
  --navy-dark: #071831;
  --navy-light: #1A3D6B;
  --red: #E8323C;
  --red-dark: #C52030;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #C9CDD6;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --text: #1A1A2E;
  --twitter-blue: #1DA1F2;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --prose-width: 680px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(13, 43, 85, 0.08), 0 1px 2px rgba(13, 43, 85, 0.06);
  --shadow-md: 0 10px 24px rgba(13, 43, 85, 0.12), 0 2px 8px rgba(13, 43, 85, 0.06);
  --shadow-lg: 0 20px 48px rgba(13, 43, 85, 0.18);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4, p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  transition: box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-nav__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.site-nav__tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.site-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--white);
  border-bottom-color: var(--red);
}

.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-nav__toggle span,
.site-nav__toggle span::before,
.site-nav__toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.site-nav__toggle span { top: 19px; }
.site-nav__toggle span::before { top: -7px; }
.site-nav__toggle span::after { top: 7px; }

.site-nav__toggle[aria-expanded="true"] span { background: transparent; }
.site-nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Buttons / Tags
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(232, 50, 60, 0.35);
}

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  color: var(--white);
}

.tag--sport { background: var(--navy); }
.tag--injury { background: var(--red); }
.tag--sport.tag--on-dark { background: rgba(255, 255, 255, 0.12); }

/* ==========================================================================
   Hero (Featured Article)
   ========================================================================== */

.hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 0%, var(--navy-light) 0%, var(--navy) 55%);
  color: var(--white);
  padding: 64px 0 72px;
}

.hero__inner {
  max-width: 760px;
}

.hero__overline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__overline::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.hero__excerpt {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-300);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 32px;
}

.hero__meta strong {
  color: var(--white);
  font-weight: 600;
}

.hero__meta .dot {
  opacity: 0.5;
}

.hero__return {
  color: #FF8A8F;
  font-weight: 600;
}

/* ==========================================================================
   Section headings
   ========================================================================== */

.section {
  padding: 64px 0;
}

.section--tight { padding: 48px 0; }

.section--muted {
  background: var(--gray-100);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ==========================================================================
   Article Card Grid
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.article-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-card__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
  transition: color 0.15s ease;
}

.article-card:hover .article-card__headline {
  color: var(--navy);
}

.article-card__excerpt {
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray-700);
  flex-grow: 1;
}

.article-card__return {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--red-dark);
}

.article-card__return span {
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

.article-card__meta {
  font-size: 13px;
  color: var(--gray-500);
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

.article-card__meta strong { color: var(--gray-700); font-weight: 600; }

/* ==========================================================================
   About Section
   ========================================================================== */

.about-block {
  max-width: 720px;
}

.about-block p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
}

.about-block p + p { margin-top: 16px; }

.about-block__subhead {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.analysis-disclaimer--about { margin-top: 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 56px 0 32px;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer__tagline {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 20px;
}

.site-footer__about {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 620px;
  margin-top: 20px;
}

.site-footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-light);
  font-size: 13px;
  color: var(--gray-500);
}

/* ==========================================================================
   Article Page — Header
   ========================================================================== */

.article-header {
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 0%, var(--navy-light) 0%, var(--navy) 55%);
  color: var(--white);
  padding: 48px 0 56px;
}

.article-header__overline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.article-header__overline strong {
  color: var(--red);
}

.article-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  color: var(--white);
}

.article-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--gray-300);
  margin-top: 12px;
  font-weight: 400;
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--gray-300);
  margin-top: 28px;
}

.article-header__meta strong { color: var(--white); font-weight: 600; }

.article-header__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-light);
}

.stat-block__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.stat-block__value {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: #FF8A8F;
}

/* ==========================================================================
   Severity Indicator
   ========================================================================== */

.severity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.severity__dots {
  display: flex;
  gap: 5px;
}

.severity__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gray-200);
}

.severity__dot.is-filled {
  background: var(--red);
}

.severity--on-dark .severity__dot {
  background: rgba(255, 255, 255, 0.18);
}

.severity--on-dark .severity__dot.is-filled {
  background: var(--red);
}

/* ==========================================================================
   Main Content Layout (article body + sidebar)
   ========================================================================== */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
}

.article-body {
  max-width: var(--prose-width);
}

.article-body > .lede {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--navy);
  margin-top: 52px;
  margin-bottom: 20px;
  scroll-margin-top: 90px;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-top: 32px;
  margin-bottom: 10px;
}

.article-body p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}

.article-body strong { font-weight: 600; color: var(--navy); }
.article-body em { font-style: italic; }

.article-body ul,
.article-body ol {
  margin: 0 0 22px 0;
  padding-left: 22px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.article-body li { margin-bottom: 10px; }
.article-body li strong { color: var(--text); }

/* ==========================================================================
   Quick Facts Sidebar
   ========================================================================== */

.sidebar {
  position: sticky;
  top: 90px;
}

.quick-facts {
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.quick-facts__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 14px;
}

.quick-facts__rule {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 14px 0;
}

.quick-facts dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.quick-facts .fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quick-facts .fact dt {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.quick-facts .fact dd {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}

.quick-facts .fact dd.is-check::after {
  content: ' \2713';
  color: var(--red);
  font-weight: 700;
}

.quick-facts__prognosis-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
}

.quick-facts__prognosis p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

/* ==========================================================================
   Phase / Timeline Block
   ========================================================================== */

.phase-timeline {
  position: relative;
  margin: 32px 0 44px;
  padding-left: 32px;
  border-left: 2px solid var(--navy);
}

.phase {
  position: relative;
  padding-bottom: 40px;
}

.phase:last-child { padding-bottom: 4px; }

.phase::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.phase__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.phase__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px;
}

.phase__desc {
  font-family: var(--font-serif);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--gray-700);
}

/* ==========================================================================
   Return-to-Play Timeline Visual
   ========================================================================== */

.rtp-timeline {
  margin: 28px 0 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.rtp-timeline__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-width: 620px;
  padding: 0 6px;
}

.rtp-timeline__track::before {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  top: 7px;
  height: 2px;
  background: var(--navy);
}

.rtp-milestone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-align: center;
}

.rtp-milestone__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  margin-bottom: 12px;
  z-index: 1;
}

.rtp-milestone__label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy);
  line-height: 1.3;
}

.rtp-milestone__time {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ==========================================================================
   Source / Evidence Card
   ========================================================================== */

.source-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.source-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-300);
}

.source-card__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.source-card__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.source-card__journal {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.source-card__link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--red-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.source-card__link:hover { text-decoration: underline; }

.source-card__note {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--gray-500);
}

/* ==========================================================================
   Tweet Card
   ========================================================================== */

.tweet-card {
  background: var(--off-white);
  border-left: 3px solid var(--twitter-blue);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 24px 0;
}

.tweet-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.tweet-card__head .dot { color: var(--gray-500); font-weight: 400; }
.tweet-card__head .date { color: var(--gray-500); font-weight: 400; }

.tweet-card__body {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}

.tweet-card__link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--twitter-blue);
}

.tweet-card__link:hover { text-decoration: underline; }

/* ==========================================================================
   Sources list (numbered)
   ========================================================================== */

.sources-list {
  list-style: none;
  counter-reset: source-counter;
  margin-top: 20px;
}

.sources-list li {
  counter-increment: source-counter;
  position: relative;
  padding-left: 34px;
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.sources-list li::before {
  content: counter(source-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sources-list a {
  color: var(--red-dark);
  word-break: break-word;
}

.sources-list a:hover { text-decoration: underline; }

/* ==========================================================================
   Analysis Disclaimer
   ========================================================================== */

.analysis-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 18px 20px;
  background: var(--gray-100);
  border-left: 3px solid var(--gray-300);
  border-radius: 4px;
}

.analysis-disclaimer__icon {
  font-size: 15px;
  line-height: 1.5;
  flex-shrink: 0;
}

.analysis-disclaimer p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

.analysis-disclaimer strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* ==========================================================================
   Related Articles
   ========================================================================== */

.related {
  background: var(--gray-100);
  padding: 56px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav__links.is-open {
    max-height: 300px;
    padding-bottom: 8px;
  }

  .site-nav__links li { width: 100%; }

  .site-nav__links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid var(--navy-light);
  }

  .site-nav__toggle {
    display: flex;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
    order: -1;
  }

  .article-body {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .hero, .article-header { padding-top: 40px; padding-bottom: 40px; }
  .section, .article-layout { padding-top: 40px; padding-bottom: 40px; }
  .article-body h2 { font-size: 24px; }
  .article-body p, .article-body ul, .article-body ol { font-size: 16.5px; }
  .rtp-milestone { width: 92px; }
}
