/**
 * BLOG.CSS — Blog section styles for celeste7.ai
 * Extends existing site tokens. Matches homepage feel.
 * Reference: Linear.app blog, Vercel blog, OpenAI blog
 *
 * Font system: Eloquia Display (headlines), DM Sans (body),
 * IBM Plex Mono (metadata), Cormorant Garamond (accent/pull quotes)
 */

/* =============================================================================
   FONT LOADING
   ============================================================================= */

@font-face {
  font-family: 'Eloquia Display';
  src: url('/fonts/Eloquia-Display-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eloquia Display';
  src: url('/fonts/Eloquia-Display-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   TEAL OVERRIDE — Brand-spec teal for blog pages
   Light mode: #2B7BA3, Dark mode: #5AABCC
   ============================================================================= */

.blog-page {
  --_colors---accent: #2B7BA3;
}

/* =============================================================================
   DARK MODE — Ensure blog content is readable on dark backgrounds
   The main CSS (celeste7homepage.webflow.css) overrides CSS variables for
   dark mode, but blog-specific classes need explicit dark mode handling
   for any hardcoded colours or overrides.
   ============================================================================= */

.dark-mode .blog-page {
  --_colors---accent: #5AABCC;
}

.dark-mode .article-body p,
.dark-mode .article-body li {
  color: rgba(255, 255, 255, 0.80) !important;
}

.dark-mode .article-body strong {
  color: var(--_colors---text-color);
}

.dark-mode .article-body h2 {
  color: var(--_colors---text-color);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .article-body h3 {
  color: rgba(255, 255, 255, 0.85);
}

.dark-mode .article-header__lede {
  color: var(--_colors---color-7);
}

.dark-mode .article-body a {
  color: var(--_colors---accent);
  border-bottom-color: rgba(90, 171, 204, 0.3);
}

.dark-mode .pull-quote {
  color: var(--_colors---color-7);
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .stat-callout {
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .stat-callout__number {
  color: var(--_colors---text-color);
}

.dark-mode .stat-callout__label {
  color: var(--_colors---color-5);
}

.dark-mode .connection-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .connection-card__title {
  color: var(--_colors---text-color);
}

.dark-mode .connection-card__body {
  color: var(--_colors---color-7);
}

.dark-mode .article-body .summary-list {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .article-body .summary-list li {
  color: rgba(255, 255, 255, 0.80);
}

.dark-mode .article-sources {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .article-sources p {
  color: var(--_colors---color-5);
}

.dark-mode .article-cta {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .article-cta__button {
  color: var(--_colors---text-color);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-mode .article-cta__button:hover {
  background-color: rgba(90, 171, 204, 0.08);
}

.dark-mode .blog-card {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .blog-card:first-child {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .blog-card__title {
  color: var(--_colors---text-color);
}

.dark-mode .blog-card__excerpt {
  color: var(--_colors---color-5);
}

.dark-mode .accent-word {
  color: #5AABCC;
}

.dark-mode .accent-callout {
  color: #5AABCC;
  border-left-color: rgba(90, 171, 204, 0.25);
}

.dark-mode .article-body .topic-label {
  color: var(--_colors---text-color);
  border-left-color: #5AABCC;
}

.dark-mode .article-split__text {
  color: rgba(255, 255, 255, 0.80);
}

.dark-mode .article-split__media img {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.40);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .article-hero img {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40);
  border-color: rgba(255, 255, 255, 0.04);
}

.dark-mode .article-full-bleed img {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40);
  border-color: rgba(255, 255, 255, 0.04);
}

.dark-mode .connection-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .article-body figure img {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.40);
  border-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .article-body code {
  background: rgba(255, 255, 255, 0.06);
  color: var(--_colors---color-7);
}

/* Footer — ensure readability in both light and dark mode blog pages */
.blog-page .footer-section {
  background: var(--_colors---surface);
}

.blog-page .footer-heading,
.blog-page .footer-section h2,
.blog-page .footer-section .footer-heading {
  color: var(--_colors---text-color) !important;
}

.blog-page .footer-section .link-block,
.blog-page .footer-section .link-block .footer-heading,
.blog-page .footer-section a.link-block h2 {
  color: var(--_colors---text-color) !important;
}

.blog-page .footer-text {
  color: var(--_colors---color-5) !important;
}

.blog-page .footer-link {
  color: var(--_colors---color-4) !important;
}

.blog-page .footer-section .footer-icon-block a,
.blog-page .footer-section .logo-sosmed a {
  color: var(--_colors---accent) !important;
}

/* prefers-color-scheme fallback (no JS) */
@media (prefers-color-scheme: dark) {
  html:not(.light-mode):not(.dark-mode) .blog-page {
    --_colors---accent: #5AABCC;
  }
  html:not(.light-mode):not(.dark-mode) .article-body p,
  html:not(.light-mode):not(.dark-mode) .article-body li {
    color: #ddd8d3;
  }
  html:not(.light-mode):not(.dark-mode) .article-body strong,
  html:not(.light-mode):not(.dark-mode) .article-body h2 {
    color: rgba(255, 255, 255, 0.92);
  }
  html:not(.light-mode):not(.dark-mode) .accent-word {
    color: #5AABCC;
  }
}

/* =============================================================================
   BLOG LAYOUT — Shared across index and article pages
   ============================================================================= */

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.blog-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.blog-page {
  background-color: var(--_colors---surface);
  min-height: 100vh;
}

/* =============================================================================
   BLOG INDEX — Page header and article cards
   ============================================================================= */

.blog-header {
  padding-top: clamp(120px, 15vw, 200px);
  padding-bottom: 80px;
}

.blog-header__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--_colors---accent);
  margin-bottom: 16px;
}

.blog-header__title {
  font-family: 'Eloquia Display', 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--_colors---text-color);
  margin: 0 0 16px 0;
}

.blog-header__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--_colors---color-5);
  line-height: 1.5;
  margin: 0;
}

/* Article cards */
.blog-card-list {
  padding-bottom: 120px;
}

.blog-card {
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--_colors---color-4);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Eloquia Display', 'Inter Tight', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--_colors---text-color);
  margin: 0 0 12px 0;
}

.blog-card__excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--_colors---color-5);
  margin: 0 0 16px 0;
  max-width: 700px;
}

.blog-card__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--_colors---accent);
  text-decoration: none;
  transition: color 150ms ease-out;
}

.blog-card__link:hover {
  color: #2B8FB3;
}

/* =============================================================================
   ARTICLE PAGE — Header, body, footer
   ============================================================================= */

/* Back link */
.article-back {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--_colors---accent);
  text-decoration: none;
  padding-top: clamp(100px, 12vw, 160px);
  margin-bottom: 48px;
  transition: color 150ms ease-out;
}

.article-back:hover {
  color: #2B8FB3;
}

/* Article header */
.article-header {
  margin-bottom: 64px;
}

.article-header__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--_colors---color-4);
  margin-bottom: 24px;
}

.article-header__title {
  font-family: 'Eloquia Display', 'Inter Tight', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--_colors---text-color);
  margin: 0 0 24px 0;
}

.article-header__lede {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--_colors---color-7);
  margin: 0;
  font-style: italic;
}

/* =============================================================================
   ARTICLE BODY — Enhanced contrast + visual variety
   ============================================================================= */

.article-body {
  margin-bottom: 80px;
}

/* Section headings — stronger visual weight with spacing */
.article-body h2 {
  font-family: 'Eloquia Display', 'Inter Tight', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--_colors---text-color);
  margin: 80px 0 28px 0;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

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

.article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--_colors---color-8);
  margin: 40px 0 16px 0;
}

/* Body text — STRONGER CONTRAST: #262626 instead of #525252 */
.article-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--_colors---color-8) !important;
  margin: 0 0 24px 0;
}

/* Bold subparagraph openers — clear design intent, not a subtle bug.
   Uses IBM Plex Mono for structural emphasis like "Fault history context."
   and "Supplier intelligence." — distinct from body text. */
.article-body strong {
  font-weight: 500;
  color: var(--_colors---text-color) !important;
}

/* Topic labels that open a paragraph: "Fault history context." style.
   Stronger differentiation: mono font, teal left border, slight indent. */
.article-body .topic-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--_colors---text-color);
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 2px solid var(--_colors---accent);
}

.article-body a {
  color: var(--_colors---accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 123, 163, 0.3);
  transition: border-color 150ms ease-out;
}

.article-body a:hover {
  border-bottom-color: var(--_colors---accent);
}

/* =============================================================================
   PULL QUOTES — DM Sans italic for key statements
   Break up walls of text with editorial authority
   ============================================================================= */

.pull-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.5;
  color: var(--_colors---color-7);
  margin: 56px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   STAT CALLOUTS — Large typographic treatment for key figures
   Eloquia Display for numbers, IBM Plex Mono for labels
   ============================================================================= */

.stat-callout {
  margin: 56px 0;
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-callout__number {
  font-family: 'Eloquia Display', 'Inter Tight', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--_colors---text-color);
  margin-bottom: 12px;
}

.stat-callout__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--_colors---color-5);
}

/* =============================================================================
   CONNECTION CARDS — For Article #6's 7 connections
   Visually distinct blocks, not plain numbered lists
   ============================================================================= */

.connection-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 24px 0;
}

.connection-card__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--_colors---accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.connection-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--_colors---text-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.connection-card__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--_colors---color-7);
  margin: 0;
}

/* =============================================================================
   TWO-COLUMN SPLIT — Break single-column monotony
   Text adjacent to image/media for editorial breathing room.
   Reference: Linear.app, Vercel, OpenAI blog layouts.
   ============================================================================= */

.article-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 56px 0;
}

.article-split--reverse {
  direction: rtl;
}

.article-split--reverse > * {
  direction: ltr;
}

.article-split__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--_colors---color-8);
}

.article-split__text p {
  font-size: 16px;
  margin-bottom: 16px;
}

.article-split__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* =============================================================================
   ACCENT CALLOUT — Standalone line, NOT inline within paragraphs
   Cormorant accent words as their own visual moment.
   ============================================================================= */

.accent-callout {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  color: #2B7BA3;
  margin: 48px 0;
  padding-left: 24px;
  border-left: 2px solid rgba(43, 123, 163, 0.25);
}

/* =============================================================================
   FULL-BLEED IMAGE — Breaks column width for visual impact
   ============================================================================= */

.article-full-bleed {
  margin: 64px -80px;
  position: relative;
}

.article-full-bleed img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.article-full-bleed figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--_colors---color-4);
  margin-top: 16px;
  padding: 0 80px;
  line-height: 1.5;
}

/* =============================================================================
   BLOCKQUOTES — Editorial weight
   ============================================================================= */

.article-body blockquote {
  margin: 40px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--_colors---accent);
}

.article-body blockquote p {
  font-style: italic;
  color: var(--_colors---color-7);
  font-size: 18px;
}

/* =============================================================================
   LISTS — Stronger contrast
   ============================================================================= */

.article-body ul,
.article-body ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--_colors---color-8);
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
  color: var(--_colors---color-8);
  line-height: 1.8;
}

.article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 400;
  color: var(--_colors---color-7);
  background: rgba(0, 0, 0, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}

/* =============================================================================
   HERO IMAGE — Full-bleed, product-focused (NOT title-repeating)
   ============================================================================= */

.article-hero {
  margin: 0 -80px 64px;
  border-radius: 16px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* =============================================================================
   ARTICLE IMAGES — Integrated into reading flow
   ============================================================================= */

.article-body figure {
  margin: 48px -40px;
}

.article-body figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.article-body figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--_colors---color-4);
  margin-top: 12px;
  padding: 0 40px;
  line-height: 1.5;
}

/* =============================================================================
   CORMORANT ACCENT — Scalpel rule
   ============================================================================= */

.accent-word {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #2B7BA3;
}

/* =============================================================================
   SUMMARY LIST — Stronger presence
   ============================================================================= */

.article-body .summary-list {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 36px;
  margin: 48px 0;
  list-style: none;
}

.article-body .summary-list li {
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  color: var(--_colors---color-8);
}

.article-body .summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--_colors---accent);
  border-radius: 50%;
}

.article-body .summary-list li:last-child {
  margin-bottom: 0;
}

/* =============================================================================
   SOURCES — Inline credibility
   ============================================================================= */

.article-sources {
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding-top: 40px;
  margin-top: 64px;
}

.article-sources__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--_colors---color-4);
  margin-bottom: 20px;
}

.article-sources p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--_colors---color-5);
  margin: 0 0 10px 0;
}

.article-sources a {
  color: var(--_colors---accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 123, 163, 0.3);
  transition: border-color 150ms ease-out;
  word-break: break-all;
}

.article-sources a:hover {
  border-bottom-color: var(--_colors---accent);
}

/* =============================================================================
   ARTICLE CTA — Footer
   ============================================================================= */

.article-cta {
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  padding: 80px 0;
  text-align: center;
}

.article-cta__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--_colors---color-5);
  margin: 0 0 24px 0;
}

.article-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--_colors---text-color);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
  transition: background-color 120ms ease-out, transform 120ms ease-out;
}

.article-cta__button:hover {
  background-color: rgba(58, 124, 157, 0.08);
}

/* =============================================================================
   SCROLL ANIMATIONS — Header and index cards only
   ============================================================================= */

.blog-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-reveal.visible .blog-stagger:nth-child(1) { transition-delay: 0ms; }
.blog-reveal.visible .blog-stagger:nth-child(2) { transition-delay: 80ms; }
.blog-reveal.visible .blog-stagger:nth-child(3) { transition-delay: 160ms; }
.blog-reveal.visible .blog-stagger:nth-child(4) { transition-delay: 240ms; }
.blog-reveal.visible .blog-stagger:nth-child(5) { transition-delay: 320ms; }

.blog-stagger {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-reveal.visible .blog-stagger {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media screen and (max-width: 991px) {
  .blog-container {
    max-width: 728px;
  }
  .blog-container--narrow {
    max-width: 680px;
  }
}

@media screen and (max-width: 767px) {
  .blog-container,
  .blog-container--narrow {
    max-width: none;
  }

  .blog-header {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .blog-card {
    padding: 32px 0;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-body h2 {
    margin-top: 56px;
    padding-top: 28px;
  }

  .article-body figure {
    margin: 32px -16px;
  }

  .article-body figure img {
    border-radius: 8px;
  }

  .article-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-split--reverse {
    direction: ltr;
  }

  .article-hero {
    margin: 0 -16px 48px;
  }

  .article-full-bleed {
    margin: 48px -16px;
  }

  .article-full-bleed figcaption {
    padding: 0 16px;
  }

  .pull-quote {
    font-size: 22px;
    margin: 40px 0;
    padding: 24px 0;
  }

  .accent-callout {
    font-size: 24px;
    margin: 32px 0;
  }

  .stat-callout {
    margin: 40px 0;
    padding: 36px 0;
  }

  .stat-callout__number {
    font-size: 48px;
  }

  .connection-card {
    padding: 20px 24px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .blog-reveal,
  .blog-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
