/* Higgsfield visual-world integration. Exact copy and data remain HTML/SVG, never baked into generated media. */
.hero-art,
.world-card-image,
.world-hero-image,
.article-lead-visual {
  position: relative;
  overflow: hidden;
  background: #dfe6dc;
}

.hero-art::after,
.world-card-image::after,
.world-hero-image::after,
.article-lead-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(253, 249, 239, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.05), transparent 45%, rgba(20,55,46,.08));
}

.hero-art img,
.world-card-image img,
.world-hero-image img,
.article-lead-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art img { object-position: center; }

.world-card-image {
  aspect-ratio: 16 / 10;
}

.world-card-image img {
  transition: transform .55s cubic-bezier(.2,.72,.2,1);
}

.world-card:hover .world-card-image img,
.world-card:focus-visible .world-card-image img {
  transform: scale(1.025);
}

.article-lead-visual {
  width: min(1120px, calc(100% - 2rem));
  margin: -.1rem auto 1.15rem;
  aspect-ratio: 16 / 7;
  border-radius: 24px;
}

.article-lead-visual.portrait-detail {
  aspect-ratio: 16 / 8;
}

.article-lead-visual figcaption {
  position: absolute;
  z-index: 2;
  right: .65rem;
  bottom: .55rem;
  margin: 0;
  padding: .22rem .45rem;
  border-radius: 999px;
  background: rgba(17, 44, 37, .78);
  color: #f8f3e8;
  font: 600 .64rem/1.2 var(--font-sans, system-ui, sans-serif);
  letter-spacing: .045em;
}

.higgsfield-editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: stretch;
  width: min(1180px, calc(100% - 2rem));
  margin: 1.1rem auto 2rem;
  overflow: hidden;
  border-radius: 26px;
  background: #173f35;
  color: #f7f1e5;
}

.higgsfield-editorial-band figure {
  min-height: 310px;
  margin: 0;
}

.higgsfield-editorial-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.higgsfield-editorial-band > div {
  align-self: center;
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.higgsfield-editorial-band h2 {
  margin: .15rem 0 .65rem;
  color: inherit;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.higgsfield-editorial-band p { color: rgba(247,241,229,.84); }

@media (max-width: 760px) {
  .article-lead-visual {
    width: calc(100% - 1rem);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .higgsfield-editorial-band {
    grid-template-columns: 1fr;
    width: calc(100% - 1rem);
    border-radius: 20px;
  }

  .higgsfield-editorial-band figure { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  .world-card-image img { transition: none; }
}

/* METATRON COMPACT READER ROUTE */
.reader-route {
  padding: clamp(1.15rem, 2.8vw, 2.25rem) var(--gutter);
}
.reader-route-copy {
  grid-template-columns: minmax(0, .72fr) minmax(300px, 1.28fr);
  gap: 1rem 4vw;
  align-items: center;
}
.reader-route h2 {
  margin-bottom: .15rem;
  font-size: clamp(1.65rem, 3vw, 2.75rem) !important;
}
.reader-route p { margin-block: .25rem; font-size: .92rem; }
.health-route-grid { margin-top: .9rem; }
.health-route-grid a { min-height: 0; padding: .78rem .9rem; }
.health-route-grid small { margin-bottom: .42rem; }
.health-route-grid b { font-size: 1.08rem; }
.health-route-grid span { margin-top: .35rem; font-size: .76rem; }

.article-detail-page .article-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.35vw, 5.2rem) !important;
  line-height: .95;
}

@media (max-width: 700px) {
  .reader-route-copy { grid-template-columns: 1fr; gap: .3rem; }
  .health-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .health-route-grid span { display: none; }
  .article-detail-page .article-hero h1 {
    font-size: clamp(2.55rem, 11.7vw, 3.45rem) !important;
  }
}
/* Higgsfield ambient hero motion. Exact copy remains live HTML outside the video. */
.hero-art .hero-motion,
.hero-art .hero-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-art .hero-motion { z-index: 1; object-position: center; }
.hero-art .hero-fallback { z-index: 0; }
.hero-art::after { z-index: 2; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-art .hero-motion { display: none; }
}