/* ══════════════════════════════════════════════════════════
   RiskRiver Blog — Stylesheet (v2, modern)
   ──────────────────────────────────────────────────────────
   Design-Prinzipien:
   - Longform-Typographie: lesbar, ausgewogen, 760px max
   - Brand-Token aus main.css (--v*), aber hellere Content-BGs
   - Moderne Details:
       · Card-Cover-Bilder in der Übersicht
       · Pro-Post-Hero mit Gradient + SVG-Layer + Orbs
       · Schwebende Node-Akzente, dezente Scan-Linie
       · Anchor-Links auf Hover bei Headings
       · Sanfte Entry-Animationen
   ══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   1 · BLOG INDEX HERO
   ─────────────────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 96px clamp(16px, 5%, 72px) 110px;
  color: #fff;
  background:
    radial-gradient(1200px 500px at 78% 10%, rgba(167,139,250,.28), transparent 60%),
    radial-gradient(900px 400px at 12% 90%, rgba(236,72,153,.18), transparent 55%),
    linear-gradient(170deg,#08071a 0%, #140635 28%, #1f0a57 52%, #3b157f 78%, #5b21b6 100%);
  isolation: isolate;
}

/* Animierte Grid-Überlagerung — sehr dezent */
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,181,253,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,181,253,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* Schwebende Knoten / Glows im Hero */
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196,181,253,.14) 0, transparent 8%),
    radial-gradient(circle at 82% 20%, rgba(236,72,153,.12) 0, transparent 7%),
    radial-gradient(circle at 90% 80%, rgba(167,139,250,.15) 0, transparent 9%),
    radial-gradient(circle at 12% 72%, rgba(196,181,253,.10) 0, transparent 8%);
  z-index: 0;
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.blog-hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .6px;
  color: #ede9fe;
  background: linear-gradient(135deg, rgba(167,139,250,.22), rgba(167,139,250,.08));
  border: 1px solid rgba(196,181,253,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.blog-hero-eye::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #c4b5fd 60%, #7c3aed 100%);
  box-shadow: 0 0 12px rgba(196,181,253,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

.blog-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
}
.blog-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 40%, #a78bfa 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-hero-lead {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(237, 233, 254, .78);
}

/* Wave separator */
.blog-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 72px;
  z-index: 1;
  pointer-events: none;
}
.blog-hero-wave svg { display: block; width: 100%; height: 100%; }

/* ───────────────────────────────────────────────────────────
   2 · BLOG LIST — Moderne Cards mit Cover-Bild
   ─────────────────────────────────────────────────────────── */
.blog-section {
  background: #fbfaff;
  padding: 0 0 96px;
}

/* Featured (erster Post): Full-width Card */
.blog-featured-wrap {
  max-width: 1200px;
  margin: -48px auto 0;
  padding: 0 clamp(16px, 5%, 48px);
  position: relative;
  z-index: 3;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e8e0f8;
  box-shadow: 0 40px 80px -30px rgba(76,29,149,.35), 0 10px 30px rgba(76,29,149,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px -30px rgba(76,29,149,.45), 0 14px 40px rgba(76,29,149,.12);
  border-color: var(--v300);
}
.blog-featured-media {
  position: relative;
  /* Feste Höhe via aspect-ratio + max-height, damit das Bild NIE
     unbegrenzt wachsen kann, auch wenn die Body-Spalte lang wird. */
  aspect-ratio: 4 / 3;
  max-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0840, #5b21b6);
}
.blog-featured-media img,
.blog-featured-media svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.blog-featured:hover .blog-featured-media img,
.blog-featured:hover .blog-featured-media svg {
  transform: scale(1.04);
}
.blog-featured-body {
  padding: clamp(26px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.blog-featured-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--v600), var(--v800));
}
.blog-featured-eye::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.8);
}
.blog-featured-cat {
  display: inline-block;
  padding: 4px 11px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--v700);
  background: var(--v100);
  border: 1px solid var(--v200);
  align-self: flex-start;
}
.blog-featured h2 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.2;
  color: #1a1028;
}
.blog-featured-excerpt {
  font-size: 15.5px;
  line-height: 1.7;
  color: #5b4d7a;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #8b7faa;
  margin-top: 4px;
}
.blog-featured-meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c4b5fd;
}
.blog-featured-go {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--v700);
  align-self: flex-start;
}
.blog-featured-go::after {
  content: "→";
  transition: transform .25s;
}
.blog-featured:hover .blog-featured-go::after {
  transform: translateX(5px);
}

/* Restliche Posts Grid */
.blog-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px clamp(16px, 5%, 48px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8e0f8;
  text-decoration: none;
  color: inherit;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s,
              border-color .3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(76,29,149,.25), 0 8px 20px rgba(76,29,149,.08);
  border-color: var(--v300);
}

/* Card Cover Image */
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0840 0%, #5b21b6 100%);
}
.blog-card-media img,
.blog-card-media svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover .blog-card-media img,
.blog-card:hover .blog-card-media svg {
  transform: scale(1.05);
}

/* Fallback: kein Bild → abstraktes Gradient-Pattern */
.blog-card-media.is-fallback {
  background:
    radial-gradient(circle at 20% 30%, rgba(167,139,250,.35) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236,72,153,.22) 0%, transparent 45%),
    linear-gradient(135deg, #1a0840, #5b21b6);
}
.blog-card-media.is-fallback::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,181,253,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,181,253,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Cat pill oben links auf Bild */
.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a0840;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.blog-card-body {
  padding: 20px 22px 6px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-title {
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.3;
  color: #1a1028;
  margin: 0;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #5b4d7a;
  flex: 1;
  /* ellipsis nach 3 Zeilen */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  padding: 14px 22px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8b7faa;
  border-top: 1px solid rgba(167,139,250,.12);
  margin-top: 6px;
}
.blog-card-meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c4b5fd;
}
.blog-card-arrow {
  margin-left: auto;
  color: var(--v700);
  font-weight: 700;
  transition: transform .25s;
}
.blog-card:hover .blog-card-arrow { transform: translateX(5px); }

/* Empty state */
.blog-empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
  color: #5b4d7a;
}
.blog-empty h3 {
  font-size: 22px;
  color: #1a1028;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}
.blog-empty p { font-size: 15px; line-height: 1.7; }

/* ───────────────────────────────────────────────────────────
   3 · POST HERO — modular, pro-Post-Styling
   ─────────────────────────────────────────────────────────── */
.post-hero {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(16px, 5%, 72px) 120px;
  color: #fff;
  isolation: isolate;
}

/* Hintergrund-Layer (SVG-Image als Füllung wenn vorhanden) */
.post-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.post-hero-bg::after {
  /* dunkler overlay damit Text lesbar bleibt */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 75% 20%, transparent, rgba(8,7,26,.55) 75%),
    linear-gradient(180deg, rgba(8,7,26,.15) 0%, rgba(8,7,26,.55) 100%);
}

/* Dezente Grid-Textur */
.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(196,181,253,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,181,253,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
  pointer-events: none;
}

.post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--ease);
}
.post-back:hover {
  color: #fff;
  background: rgba(255,255,255,.16);
  transform: translateX(-3px);
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
}
.post-cat {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a0840;
  background: var(--hero-accent, #c4b5fd);
  box-shadow: 0 0 18px rgba(196,181,253,.35);
}
.post-meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.post-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.08;
  color: #fff;
  /* very subtle text glow */
  text-shadow: 0 2px 30px rgba(8,7,26,.5);
}

.post-lead {
  font-size: 18px;
  line-height: 1.75;
  max-width: 680px;
  color: rgba(237,233,254,.82);
}

/* Floating decorative orbs (independent of BG image) */
.post-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  opacity: .7;
  animation: orbFloat 14s ease-in-out infinite;
}
.post-hero-orb-1 {
  width: 320px; height: 320px;
  top: -60px; right: -40px;
  background: radial-gradient(circle, rgba(167,139,250,.6), transparent 65%);
}
.post-hero-orb-2 {
  width: 260px; height: 260px;
  bottom: 20px; left: -40px;
  background: radial-gradient(circle, rgba(236,72,153,.35), transparent 65%);
  animation-delay: -5s;
}
.post-hero-orb-3 {
  width: 180px; height: 180px;
  top: 50%; right: 40%;
  background: radial-gradient(circle, rgba(196,181,253,.35), transparent 65%);
  animation-delay: -9s;
  opacity: .45;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(14px, -18px) scale(1.06); }
}

/* Floating node accents */
.post-hero-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.post-hero-nodes svg { width: 100%; height: 100%; display: block; }

/* Wave separator */
.post-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
}
.post-hero-wave svg { width: 100%; height: 100%; display: block; }

/* ───────────────────────────────────────────────────────────
   4 · POST BODY (Longform)
   ─────────────────────────────────────────────────────────── */
.post-wrap {
  background: #fbfaff;
  padding: 0 clamp(16px, 5%, 32px) 96px;
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 0;
}
.post-body p {
  font-size: 16.5px;
  line-height: 1.78;
  color: #2a1e4a;
  margin-bottom: 20px;
}
.post-body p strong { color: #1a1028; font-weight: 700; }
.post-body em,
.post-body li em,
.post-body p em { color: var(--v700); font-style: italic; }
.post-body a {
  color: var(--v700);
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,.4);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.post-body a:hover { text-decoration-color: var(--v700); }

.post-body code {
  font-family: var(--mono);
  font-size: .88em;
  padding: 2px 7px;
  background: var(--v50);
  border: 1px solid var(--v200);
  border-radius: 5px;
  color: var(--v800);
}

/* Headings */
.post-body h2,
.post-body h3,
.post-body h4 {
  color: #1a1028;
  letter-spacing: -.6px;
  margin: 48px 0 16px;
  scroll-margin-top: 90px;
  position: relative;
}
.post-body h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -1px; }
.post-body h3 { font-size: clamp(19px, 2.3vw, 24px); font-weight: 800; }
.post-body h4 { font-size: 17px; font-weight: 700; margin-top: 32px; }

.post-body h2 a.hdg-link,
.post-body h3 a.hdg-link,
.post-body h4 a.hdg-link {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--v400);
  text-decoration: none;
  opacity: 0;
  transition: opacity .15s;
  font-weight: 500;
  font-size: .7em;
}
.post-body h2:hover a.hdg-link,
.post-body h3:hover a.hdg-link,
.post-body h4:hover a.hdg-link { opacity: 1; }

/* Lists */
.post-body ul,
.post-body ol {
  margin: 0 0 22px 0;
  padding-left: 24px;
}
.post-body li {
  font-size: 16.5px;
  line-height: 1.75;
  color: #2a1e4a;
  margin-bottom: 8px;
}
.post-body ul li::marker { color: var(--v500); }

/* TOC */
.post-toc {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 32px 0 40px;
}
.post-toc-ttl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--v700);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-toc-ttl::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--v600);
  border-radius: 1px;
}
.post-toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  columns: 2;
  column-gap: 28px;
}
.post-toc li {
  margin: 0 0 6px;
  break-inside: avoid;
  font-size: 14px;
}
.post-toc a {
  color: #4a3b72;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 3px 0;
  transition: color .15s;
}
.post-toc a:hover { color: var(--v700); }
.post-toc a::before {
  content: "›";
  color: var(--v500);
  font-weight: 700;
}
@media (max-width: 640px) { .post-toc ul { columns: 1; } }

/* Callout */
.post-callout {
  background: linear-gradient(135deg, #faf8ff 0%, #f0ebff 100%);
  border-left: 3px solid var(--v500);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 28px 0;
}
.post-callout-ttl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--v700);
  margin-bottom: 6px;
}
.post-callout p { margin-bottom: 0; font-size: 15.5px; }

/* Glossary */
.gl-cat-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 56px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd6fe;
}
.gl-cat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--v600), var(--v800));
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(109,40,217,.3);
}
.gl-cat-hdr h2 {
  margin: 0 !important;
  font-size: clamp(22px, 2.8vw, 28px) !important;
  letter-spacing: -.6px !important;
}

.gl-term {
  background: #fff;
  border: 1px solid #e8e0f8;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s;
  scroll-margin-top: 90px;
}
.gl-term:hover {
  border-color: var(--v300);
  box-shadow: 0 6px 20px rgba(109,40,217,.08);
}
.gl-term-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.gl-term-name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: #1a1028;
  letter-spacing: -.3px;
}
.gl-term-abbr {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--v700);
  background: var(--v50);
  padding: 2px 9px;
  border-radius: 5px;
  border: 1px solid var(--v200);
  letter-spacing: .3px;
}
.gl-term-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b7faa;
  margin-left: auto;
}
.gl-term-def {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3d2f61;
}
.gl-term-def p { margin-bottom: 10px; font-size: inherit; }
.gl-term-def p:last-child { margin-bottom: 0; }



/* ───────────────────────────────────────────────────────────
   5 · Entrance animations
   ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .blog-featured, .blog-card {
    animation: blogFadeUp .55s cubic-bezier(.4,0,.2,1) both;
  }
  .blog-card:nth-child(1) { animation-delay: .05s; }
  .blog-card:nth-child(2) { animation-delay: .12s; }
  .blog-card:nth-child(3) { animation-delay: .18s; }
  .blog-card:nth-child(4) { animation-delay: .24s; }
  .blog-card:nth-child(5) { animation-delay: .30s; }
  .blog-card:nth-child(6) { animation-delay: .36s; }

  @keyframes blogFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ───────────────────────────────────────────────────────────
   6 · Mobile
   ─────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-media { min-height: 220px; aspect-ratio: 16 / 9; max-height: 280px; }
}
@media (max-width: 720px) {
  .blog-hero { padding: 72px 20px 88px; }
  .post-hero { padding: 72px 20px 96px; }
  .blog-list { padding: 36px 16px 0; gap: 18px; }
  .blog-featured-wrap { margin-top: -36px; padding: 0 16px; }
  .blog-featured-body { padding: 24px; }
  .blog-card-body { padding: 16px 18px 4px; }
  .blog-card-meta { padding: 12px 18px 16px; }
  .post-body { padding: 32px 0 0; }
  .post-body p, .post-body li { font-size: 15.5px; }
  .post-body h2 a.hdg-link,
  .post-body h3 a.hdg-link,
  .post-body h4 a.hdg-link { display: none; }
  .gl-term { padding: 18px 20px; }
  .gl-term-head { gap: 8px; }
  .gl-term-cat { width: 100%; margin-left: 0; margin-top: 2px; }

  .post-hero-orb-1 { width: 220px; height: 220px; }
  .post-hero-orb-2 { width: 180px; height: 180px; }
}
