/* ══════════════════════════════════════════════
   DESIGN TOKENS — matching schulich.leonnova.com
   Primary: hsl(345,72%,33%) = #8E1B30 (Leonnova crimson)
   Fonts: Montserrat (headings) + Inter (body)
   Background: #ffffff / #f7f7f7
   Text: #333333
   Gold accent: hsl(43,55%,55%) = #C4962A
══════════════════════════════════════════════ */
:root {
  --primary:         #8E1B30;
  --primary-hover:   #7a1528;
  --primary-light:   #f9f0f2;
  --primary-border:  #e8c4cc;

  --gold:            #C4962A;
  --gold-light:      #fdf6e7;

  --bg:              #ffffff;
  --bg-tinted:       #f7f7f8;
  --surface:         #ffffff;
  --border:          #e8e8e8;

  --text:            #1f1f1f;
  --text-muted:      #6b6b6b;
  --text-faint:      #aaaaaa;

  --radius:          0.5rem;
  --radius-lg:       0.75rem;
  --radius-xl:       1.25rem;

  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.13);

  --font-heading:    'Montserrat', system-ui, sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;

  --max-w:           1152px;
  --max-w-narrow:    720px;
  --px:              clamp(1rem, 5vw, 3rem);
}

/* ══════════════════════════════════════════════
   BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--bg); }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }
p, li { max-width: 66ch; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg, video { display: block; max-width: 100%; }

/* Reveal animations */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.container-narrow { max-width: var(--max-w-narrow); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-tinted { background: var(--bg-tinted); }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
.eyebrow-center, .eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.eyebrow-center { text-align: center; }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  border: none;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: block; }
.nav-logo:hover { opacity: 0.85; text-decoration: none; }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: #fff;
}
.hero-swirl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-swirl svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  text-align: center;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.headline-accent { color: var(--primary); display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* Partner logos bar */
.partner-logos {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.partner-logos-img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Partner text logos */
.partner-text-logo { display: flex; align-items: center; }
.partner-schulich {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.ps-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #00539B;
  white-space: nowrap;
}
.ps-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #555;
  white-space: nowrap;
}
.ps-york {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #E31837;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pl-leonnova {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   VSL PLAYER
══════════════════════════════════════════════ */
.vsl-wrapper {
  max-width: 820px;
  margin-inline: auto;
}
.vsl-chrome {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #1a1a1a;
}
.vsl-chrome-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}
.vsl-dots {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}
.vsl-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
}
.vsl-dots span:nth-child(1) { background: #ff5f57; }
.vsl-dots span:nth-child(2) { background: #febc2e; }
.vsl-dots span:nth-child(3) { background: #28c840; }
.vsl-label-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #888;
}
.vsl-screen {
  aspect-ratio: 16/9;
  width: 100%;
  background: #111;
  position: relative;
}
.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  cursor: pointer;
}
.vsl-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 0 30px rgba(142,27,48,0.4);
}
.vsl-play-btn:hover {
  transform: scale(1.08);
  background: #a82037;
  box-shadow: 0 0 50px rgba(142,27,48,0.6);
}
.vsl-placeholder-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #888;
  max-width: none;
}
.vsl-caption {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.85rem;
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-tinted);
  padding-block: 1.5rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ══════════════════════════════════════════════
   WHY CARDS
══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   LEARN GRID
══════════════════════════════════════════════ */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.learn-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.learn-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-border);
}
.learn-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.learn-card h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.learn-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   QUOTE
══════════════════════════════════════════════ */
.section-quote { background: var(--primary); }
.quote-card {
  position: relative;
  padding: 3rem 3.5rem;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
  font-weight: 800;
}
.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  max-width: none;
}
.quote-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quote-footer strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.quote-footer span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 600px) {
  .quote-card { padding: 2rem 1.75rem; }
  .quote-mark { font-size: 4rem; }
}

/* ══════════════════════════════════════════════
   INSTRUCTORS
══════════════════════════════════════════════ */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.instructor-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.instructor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.instructor-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 0.2rem;
}
.instructor-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.instructor-card p:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 200ms, transform 200ms;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.quote-open {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  max-width: none;
}
.testimonial-card footer {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════
   COURSE DETAILS
══════════════════════════════════════════════ */
.course-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .course-layout { grid-template-columns: 1fr; } }

.modules-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.module-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.module-row:last-child { border-bottom: none; }
.module-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  flex-shrink: 0;
  width: 32px;
  line-height: 1.2;
}
.module-row strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 0.25rem;
}
.module-row p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.details-card {
  position: sticky;
  top: calc(72px + 1.5rem);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.detail-label { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.detail-value { color: var(--text); font-weight: 600; text-align: right; }
.detail-value small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.78rem; }
.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  margin-bottom: 1.25rem;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.price-amount small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.limited-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  max-width: none;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.section-cta { background: var(--bg); }
.cta-center { text-align: center; }
.cta-center h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.cta-center p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: none;
}
.cta-fine {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-faint);
  max-width: none;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--text);
  padding-block: 2.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-brand p { font-size: 0.825rem; max-width: none; }
.footer-bottom { font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .partner-logos-inner { flex-direction: column; gap: 0.75rem; }
  .partner-divider { width: 40px; height: 1px; }
  .instructor-card { flex-direction: column; }
  .details-card { position: static; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   HERO ADDITIONS
══════════════════════════════════════════════ */
.hero-urgency {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.75rem;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-cta-fine {
  font-size: 0.78rem;
  color: var(--text-faint);
  max-width: none;
}

/* ══════════════════════════════════════════════
   WHO IT'S FOR
══════════════════════════════════════════════ */
.section-who { background: var(--bg); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.who-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, transform 200ms, border-color 200ms;
}
.who-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-border);
}
.who-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.who-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.who-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.who-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
  max-width: none;
}
.who-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   PROGRAM HIGHLIGHTS
══════════════════════════════════════════════ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, transform 200ms;
}
.highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.highlight-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.highlight-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}
