/* ==========================================================================
   DJ HANSEATIC – Design System 2026/2027
   Dark Premium Eventdesign · Mobile-first · System-Fonts (DSGVO-freundlich)
   ========================================================================== */

:root {
  --bg: #0b0f1a;
  --bg-2: #0f1524;
  --card: #121a2c;
  --card-2: #161f34;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --tx: #f2f5fb;
  --mut: #a7b0c3;
  --gold: #e9b34a;
  --gold-2: #d99a2b;
  --gold-ink: #1a1206;
  --ink: #14100a;
  --wa: #128c4b;
  --wa-ink: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--tx);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(233, 179, 74, .08), transparent 60%),
    radial-gradient(700px 480px at -10% 30%, rgba(124, 92, 255, .07), transparent 60%);
}
main, header, footer, section { position: relative; z-index: 1; }
img, svg { max-width: 100%; vertical-align: middle; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(233, 179, 74, .35); }

.wrap { max-width: 1160px; margin-inline: auto; padding-inline: 20px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--gold-ink);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.22; margin: 0 0 .6em; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(1.95rem, 1.1rem + 3.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.15rem); }
h3 { font-size: 1.1rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
h1, h2 { text-wrap: balance; }
.lead {
  font-size: clamp(1.05rem, 1rem + .45vw, 1.28rem);
  color: var(--mut);
  max-width: 62ch;
  margin-bottom: 1.4em;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 .9em;
}
.more-link { margin-top: 1.4em; }
.more-link a { font-weight: 700; margin-right: 1em; }
.faq-group { font-size: 1.18rem; margin-top: 1.8em; color: var(--gold); }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .98rem; line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(135deg, #f0be55, var(--gold-2));
  color: var(--gold-ink);
  box-shadow: 0 6px 18px rgba(233, 179, 74, .25);
}
.btn--gold:hover { box-shadow: 0 8px 22px rgba(233, 179, 74, .35); }
.btn--ghost { border-color: var(--line-2); color: var(--tx); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--wa { background: var(--wa); color: var(--wa-ink); }
.btn--wa:hover { background: #0f7a40; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ghost-ink { border-color: rgba(20, 16, 10, .45); color: var(--gold-ink); }
.btn--ghost-ink:hover { border-color: var(--gold-ink); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }
.btn--full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ico-sm { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand {
  font-weight: 900; letter-spacing: .06em; font-size: 1.06rem;
  color: var(--tx); text-decoration: none; white-space: nowrap;
}
.brand span { color: var(--gold); }
.brand:hover { text-decoration: none; }
.brand--foot { font-size: 1.1rem; }

.nav-tgl {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: 1px solid var(--line-2); border-radius: 8px;
  padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center;
}
.nav-tgl-box { display: flex; flex-direction: column; gap: 5px; }
.nav-tgl-box span { display: block; width: 20px; height: 2px; background: var(--tx); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
body.nav-open .nav-tgl-box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-tgl-box span:nth-child(2) { opacity: 0; }
body.nav-open .nav-tgl-box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { display: none; }
body.nav-open .main-nav {
  display: block;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #0d1220;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 8px 20px 20px;
}
.main-nav > ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { border-bottom: 1px solid var(--line); }
.main-nav > ul > li:last-child { border-bottom: 0; }
.main-nav > ul > li > a {
  display: block; padding: 14px 4px; color: var(--tx); font-weight: 600; text-decoration: none;
}
.main-nav > ul > li > a.is-active { color: var(--gold); }
.sub-tgl {
  position: absolute; right: 8px; margin-top: -46px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; color: var(--mut);
  padding: 10px;
}
.sub-tgl span, .sub-tgl::before {
  content: "+"; display: block; text-align: center;
  font-size: 1.4rem; line-height: 1.4; color: var(--gold);
}
li.sub-open .sub-tgl::before { content: "–"; }
.sub {
  list-style: none; margin: 0; padding: 0 0 10px; display: none;
}
li.sub-open .sub { display: block; }
.sub a { display: block; padding: 9px 12px; color: var(--mut); border-radius: 8px; text-decoration: none; font-size: .96rem; }
.sub a:hover { background: rgba(255, 255, 255, .05); color: var(--tx); text-decoration: none; }
.sub a.is-active { color: var(--gold); }
.nav-cta { padding: 14px 4px; }
.nav-phone { color: var(--mut); font-size: .92rem; padding: 10px 4px 2px; margin: 0; }
.nav-phone a { font-weight: 700; }

@media (min-width: 1000px) {
  .nav-tgl, .sub-tgl, .nav-phone { display: none; }
  .main-nav { display: block; }
  .main-nav > ul { display: flex; align-items: center; gap: 4px; }
  .main-nav > ul > li { position: relative; border-bottom: 0; }
  .main-nav > ul > li > a { padding: 10px 12px; font-size: .95rem; }
  .main-nav > ul > li > a:hover { color: var(--gold); }
  .sub {
    position: absolute; top: 100%; left: 0;
    min-width: 240px;
    background: #0d1220;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 60;
  }
  .has-sub:hover .sub, .has-sub:focus-within .sub {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .sub-tgl { margin: 0; }
  .nav-cta { margin-left: 8px; padding: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 108px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(1100px 480px at 78% -20%, rgba(233, 179, 74, .14), transparent 62%),
    radial-gradient(760px 420px at 8% 118%, rgba(124, 92, 255, .12), transparent 60%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(720px 420px at 60% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 420px at 60% 20%, #000 30%, transparent 75%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero--compact { padding: clamp(40px, 6vw, 64px) 0 clamp(30px, 4vw, 44px); }
.hero--compact h1 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem); }
.hero-cta { margin-top: 26px; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 14px 0 0; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: .82rem; color: var(--mut); }
.crumbs li { display: inline-flex; align-items: center; gap: 10px; }
.crumbs li + li::before { content: "/"; color: var(--line-2); }
.crumbs a { color: var(--mut); }
.crumbs a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(44px, 7vw, 84px) 0; }
.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section > .wrap > h2:first-child { margin-top: 0; }

/* ---------- Grids & Karten ---------- */
.grid { display: grid; gap: 18px; }
.g2, .g3, .g4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .g2 { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .f-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (min-width: 980px) {
  .g3 { grid-template-columns: repeat(3, 1fr); }
  .g4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: block;
  color: var(--tx);
}
.card p { color: var(--mut); margin-bottom: 0; }
.card p + p { margin-top: .6em; }
.card h3 { margin: 12px 0 8px; }
.card--link { text-decoration: none; transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.card--link:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(233, 179, 74, .5);
  background: var(--card-2);
}
.card--link h3 { color: var(--gold); }
.ico {
  width: 34px; height: 34px;
  fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
ul.cols {
  list-style: none; margin: 14px 0 0; padding: 0;
  columns: 2; column-gap: 18px;
}
ul.cols li { break-inside: avoid; margin-bottom: 6px; }
ul.cols a { color: var(--mut); font-size: .95rem; }
ul.cols a:hover { color: var(--gold); text-decoration: none; }
@media (max-width: 560px) { ul.cols { columns: 1; } }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; margin: 26px 0 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 30px 66px;
}
.steps li:last-child { padding-bottom: 6px; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(233, 179, 74, .18), rgba(233, 179, 74, .06));
  border: 1px solid rgba(233, 179, 74, .4);
  color: var(--gold);
  font-weight: 800; font-size: 1.02rem;
  border-radius: 50%;
}
.steps strong { display: block; font-size: 1.08rem; margin-bottom: 4px; }
.steps p { color: var(--mut); margin: 0; }

/* ---------- Checkliste ---------- */
ul.check { list-style: none; margin: 18px 0; padding: 0; }
ul.check li {
  position: relative;
  padding: 0 0 14px 34px;
  color: var(--mut);
}
ul.check li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(233, 179, 74, .14);
  border: 1px solid rgba(233, 179, 74, .45);
  color: var(--gold);
  border-radius: 50%;
  font-size: .8rem; font-weight: 800;
}
ul.check li strong { color: var(--tx); }

/* ---------- Hinweisbox ---------- */
.note {
  border-left: 3px solid var(--gold);
  background: rgba(233, 179, 74, .07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 18px 0;
}
.note p { margin: 0; color: var(--tx); }

/* ---------- Tabelle ---------- */
.tbl { overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 480px; }
th {
  text-align: left; padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 2px solid var(--line-2);
  font-weight: 700;
}
td { padding: 11px 16px; border-bottom: 1px solid var(--line); color: var(--mut); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, .02); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: rgba(233, 179, 74, .4); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 18px;
  font-weight: 600;
  position: relative;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem; font-weight: 400; line-height: 1;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq-a { padding: 0 18px 18px; color: var(--mut); }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA-Band ---------- */
.cta-wrap { padding-top: 0; }
.cta-band {
  background: linear-gradient(120deg, #f0be55, #d99a2b 55%, #c98a20);
  color: var(--gold-ink);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: 0 18px 40px rgba(233, 179, 74, .18);
}
.cta-band-t { font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.7rem); font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em; }
.cta-band-s { max-width: 62ch; margin-bottom: 22px; color: rgba(26, 18, 6, .82); }

/* ---------- Kontaktformular ---------- */
.contact-grid { align-items: start; }
.contact-form { padding: 28px; }
.f-row { margin-bottom: 16px; }
.f-row label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.f-row input[type="text"], .f-row input[type="email"], .f-row input[type="tel"],
.f-row input[type="date"], .f-row input[type="number"], .f-row select, .f-row textarea {
  width: 100%;
  background: var(--bg-2);
  color: var(--tx);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
}
.f-row input:focus, .f-row select:focus, .f-row textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}
.f-row textarea { resize: vertical; min-height: 130px; }
.f-hint { font-size: .82rem; color: var(--mut); margin: 6px 0 0; }
.f-check { display: flex; gap: 10px; align-items: flex-start; }
.f-check input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--gold); flex: 0 0 auto; }
.f-check label { font-weight: 400; font-size: .88rem; margin: 0; color: var(--mut); }
.req { color: var(--gold); }
.contact-side .card { margin-bottom: 18px; }
.big-phone a { font-size: 1.4rem; font-weight: 800; }
.card--wa { border-color: rgba(18, 140, 75, .5); }
.card--wa .ico { stroke: var(--wa); }
.form-error {
  border-left: 3px solid #e05252;
  background: rgba(224, 82, 82, .08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin-bottom: 18px;
}
.form-error p { margin: 0; }

/* ---------- Footer ---------- */
.site-foot {
  background: #080b14;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0 90px;
  margin-top: 0;
}
@media (min-width: 900px) { .site-foot { padding-bottom: 40px; } }
.foot-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-t { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--tx); margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: var(--mut); font-size: .94rem; }
.foot-col a:hover { color: var(--gold); text-decoration: none; }
.foot-brand p { color: var(--mut); font-size: .94rem; }
.foot-adr, .foot-kontakt { margin-bottom: .5em; }
.foot-kontakt a { font-weight: 700; }
.foot-legal {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  color: var(--mut); font-size: .88rem;
}
.foot-legal p { margin: 0; }
.foot-legal a { color: var(--mut); }
.foot-legal a:hover { color: var(--gold); }

/* ---------- Mobile Aktionsleiste ---------- */
.mob-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(10, 13, 23, .97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-2);
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 4px 10px;
  color: var(--tx); font-size: .74rem; font-weight: 700;
  text-decoration: none; min-height: 54px; justify-content: center;
}
.mob-bar a:hover { text-decoration: none; color: var(--gold); }
.mob-bar .mob-wa { color: #4cc98a; }
.mob-bar .mob-cta { color: var(--gold); }
.mob-bar .ico-sm { width: 20px; height: 20px; }
body { padding-bottom: 54px; }
@media (min-width: 900px) {
  .mob-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
p > a { overflow-wrap: anywhere; }

/* ==========================================================================
   Erweiterung v1.1: Eventservice-Portfolio, Bildkarten, Preiskarten
   ========================================================================== */

/* Bildkarten: Bild oben, Text darunter. Fehlende Bilddatei -> neutraler Platzhalter */
.img-card { padding: 0; overflow: hidden; }
.img-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(140deg, #1a2338, #10182a 60%, #0d1322);
  border-bottom: 1px solid var(--line);
}
.img-card h3 { margin: 14px 16px 6px; font-size: 1.05rem; }
.img-card p { margin: 0 16px 16px; color: var(--mut); font-size: .95rem; }
.img-card--wide img { aspect-ratio: 16 / 8; }

.port-grid { margin-top: 18px; }
.food-grid { margin-top: 18px; }
.food-grid .img-card img { aspect-ratio: 3 / 2; }

/* Preiskarten */
.price-grid { margin-top: 18px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card .btn { margin: auto 16px 18px; align-self: flex-start; }
.price-card h3 { margin-bottom: 2px; }
.price-sub { margin: 0 16px 10px; color: var(--mut); font-size: .95rem; }
.price-amount {
  margin: 0 16px 12px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.price-note { margin: 10px 16px 0; color: var(--mut); font-size: .85rem; }
.price-card--top { border-color: rgba(233, 179, 74, .55); box-shadow: 0 0 0 1px rgba(233, 179, 74, .35), var(--shadow); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  margin: 0;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .price-amount { font-size: 1.7rem; }
  .img-card--wide img { aspect-ratio: 16 / 10; }
}

/* ---------- v1.2.0: Bilder mit sichtbarer Bildbeschreibung ---------- */
figure.fig {
  margin: 22px 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
figure.fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
figure.fig figcaption {
  padding: 12px 16px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--mut);
  border-top: 1px solid var(--line);
}
figure.fig--tall img { aspect-ratio: 4 / 3; }
.media-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}
.media-split figure.fig { margin: 0; }
@media (min-width: 860px) {
  .media-split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  figure.fig img { aspect-ratio: 16 / 8; }
}
