/* ZynPlayr — screen.css
   Visual DNA from the Morphic style reference: near-black canvas, one blue
   accent, Inter at every weight, understated surfaces. Buttons are pill-
   shaped on purpose (see note above .zp-nudge) rather than the theme's
   literal 7px radius, to stay clear of the generic 6-8px look. */

:root {
  --zp-black: #000000;
  --zp-s1: #212121;
  --zp-s2: #292929;
  --zp-s3: #333333;
  --zp-white: #ffffff;
  --zp-fog: rgba(229, 231, 235, .14);
  --zp-mid: #9a9a9a;
  --zp-steel: #8f8f8f;
  --zp-graphite: #6b6b6b;
  --zp-slate: #565656;
  /* Two blues, one hue: --zp-accent is tuned so white text on it clears
     4.5:1 (used for button fills only); --zp-accent-text is a lighter tint
     tuned so it clears 4.5:1 as TEXT on black and on every raised surface
     (s1/s2/s3). A single 0075ff could not satisfy both directions at once. */
  --zp-accent: #0070f0;
  --zp-accent-text: #4d9fff;
  --zp-accent-dim: rgba(0, 117, 255, .16);
  --zp-max: 1180px;
  --zp-gap: 96px;
  --zp-radius-card: 14px;
  --zp-radius-lg: 20px;
  --zp-font: 'ZPInter', 'ZPInter Fallback', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

@font-face {
  font-family: 'ZPInter';
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZPInter';
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZPInter';
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZPInter';
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
/* Metric-matched fallback so the swap from system font to Inter does not
   reflow ch-width paragraphs (P19 CLS note) — sits right after the real
   font in the stack above. */
@font-face {
  font-family: 'ZPInter Fallback';
  src: local('Arial');
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
  size-adjust: 107.12%;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--zp-black);
  color: var(--zp-white);
  font-family: var(--zp-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--zp-mid); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.zp-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.zp-ico { width: 18px; height: 18px; flex: none; }
.zp-ico--lg { width: 32px; height: 32px; }

main { display: block; }
section, .zp-review, .zp-brief, .zp-versus { width: 100%; }

/* ---------------------------------------------------------------------
   layout container used by every section — width comes only from here
   ------------------------------------------------------------------- */
.zp-masthead__inner, .zp-footline__inner, .zp-footline__bottom,
.zp-spotlight, .zp-showcase, .zp-digest, .zp-query, .zp-brief__inner,
.zp-section, .zp-crumb, .zp-review, .zp-similar, .zp-versus, .zp-rank,
.zp-brief--page, .zp-brief--legal, .zp-sitemap {
  max-width: var(--zp-max);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------------------------------------------------------------------
   masthead
   ------------------------------------------------------------------- */
.zp-masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(0,0,0,.92);
  /* No backdrop-filter here on purpose: it would make this sticky header
     establish a containing block for position:fixed descendants (the
     mobile nav panel below), which breaks its viewport-relative sizing. */
}
.zp-masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px; gap: 16px;
}
.zp-masthead__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.zp-masthead__mark { width: 30px; height: 30px; flex: none; }
.zp-masthead__nav { display: flex; align-items: center; gap: 22px; }
.zp-masthead__link { font-size: 14px; font-weight: 500; color: var(--zp-mid); transition: color .15s ease; }
.zp-masthead__link:hover, .zp-masthead__link:focus-visible { color: var(--zp-white); }
.zp-masthead__cta {
  font-size: 14px; font-weight: 500; color: var(--zp-white);
  background: var(--zp-s2); padding: 9px 18px; border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
}
.zp-masthead__cta:hover { background: var(--zp-s3); transform: translateY(-1px); }
.zp-masthead__toggle {
  display: none; background: none; border: 0; color: var(--zp-white); padding: 8px; cursor: pointer;
}

@media (max-width: 860px) {
  .zp-masthead__toggle { display: inline-flex; }
  .zp-masthead__nav {
    position: fixed; inset: 64px 0 0 0; background: var(--zp-black);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 20px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .zp-masthead__nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .zp-masthead__link, .zp-masthead__cta { width: 100%; padding: 14px 4px; font-size: 16px; }
  .zp-masthead__cta { text-align: center; margin-top: 8px; }
}

/* ---------------------------------------------------------------------
   section heads / eyebrow / two-tone titles
   ------------------------------------------------------------------- */
.zp-section { padding-block: 56px; }
.zp-section__head { max-width: 640px; margin-bottom: 32px; }
.zp-section__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--zp-accent-text); margin: 0 0 10px;
}
.zp-section__title {
  font-size: clamp(26px, 3.6vw, 38px); line-height: 1.15; color: var(--zp-white);
}
.zp-section__title span { display: block; color: var(--zp-mid); font-weight: 700; }

/* ---------------------------------------------------------------------
   hero / spotlight
   ------------------------------------------------------------------- */
.zp-spotlight {
  padding-block: 88px 64px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(0,117,255,.14), transparent 70%),
    var(--zp-black);
}
.zp-spotlight__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--zp-accent-text); margin: 0 0 18px;
}
.zp-spotlight__title {
  font-size: clamp(34px, 6vw, 58px); line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 22px; color: var(--zp-white);
}
.zp-spotlight__title span { color: var(--zp-mid); }
.zp-spotlight__lead {
  max-width: 56ch; margin: 0 auto 34px; font-size: 18px; color: var(--zp-mid);
}
.zp-spotlight__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   buttons — pill geometry, deliberately not the theme's default 7px
   ------------------------------------------------------------------- */
.zp-nudge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--zp-font); font-size: 15px; font-weight: 500;
  color: var(--zp-white); background: var(--zp-accent);
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.zp-nudge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,117,255,.28); }
.zp-nudge:focus-visible { outline: 2px solid var(--zp-white); outline-offset: 3px; }
.zp-nudge--ghost {
  background: transparent; border-color: var(--zp-fog); color: var(--zp-white);
}
.zp-nudge--ghost:hover { background: var(--zp-s2); box-shadow: none; }
.zp-nudge--top {
  position: fixed; right: 20px; bottom: 20px; z-index: 30;
  padding: 12px; background: var(--zp-s2); border: 1px solid var(--zp-fog);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.zp-nudge--top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------------------------------------------------------------------
   genre showcase
   ------------------------------------------------------------------- */
.zp-showcase__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.zp-showcase__tile {
  background: var(--zp-s1); border-radius: var(--zp-radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 10px;
  color: var(--zp-accent-text); transition: transform .18s ease, background .18s ease;
}
.zp-showcase__tile:hover { transform: translateY(-4px); background: var(--zp-s2); }
.zp-showcase__title { font-size: 22px; font-weight: 700; color: var(--zp-white); margin-top: 6px; }
.zp-showcase__desc { font-size: 15px; color: var(--zp-mid); line-height: 1.5; }
.zp-showcase__count { font-size: 13px; color: var(--zp-steel); margin-top: 6px; }
@media (max-width: 640px) { .zp-showcase__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   lineup — single card approach for the whole site: image left, text
   right, in a single-row list (not a grid)
   ------------------------------------------------------------------- */
.zp-lineup { display: flex; flex-direction: column; gap: 12px; }
.zp-lineup__row {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: center;
  background: var(--zp-s1); border-radius: var(--zp-radius-card);
  padding: 16px 20px; transition: background .16s ease, transform .16s ease;
}
.zp-lineup__row:hover { background: var(--zp-s2); transform: translateX(4px); }
.zp-lineup__media img { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; object-fit: cover; }
.zp-lineup__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.zp-lineup__top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.zp-lineup__title { font-size: 17px; font-weight: 600; color: var(--zp-white); }
.zp-lineup__hook { font-size: 14px; color: var(--zp-steel); line-height: 1.5; }
.zp-lineup__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 2px; }

/* compact variant: similar-games rows and roundup rows */
.zp-lineup__row--compact { grid-template-columns: 68px 1fr; padding: 12px 16px; }
.zp-lineup__row--compact .zp-lineup__media img { border-radius: 10px; }
.zp-lineup__row--compact .zp-lineup__title { font-size: 15px; }
.zp-lineup__row--compact .zp-lineup__hook { display: none; }

/* feature variant: reserved for future single-highlight use */
.zp-lineup__row--feature { grid-template-columns: 140px 1fr; padding: 22px 26px; }

.zp-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .03em; color: var(--zp-mid);
  border: 1px solid var(--zp-fog); border-radius: 999px; padding: 3px 11px;
}
.zp-stat { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--zp-white); }
.zp-stat .zp-ico { width: 14px; height: 14px; color: var(--zp-accent-text); }
.zp-stat__count { color: var(--zp-steel); font-weight: 400; }
.zp-stat--unrated { color: var(--zp-steel); font-style: normal; }
.zp-stat--score { color: var(--zp-mid); }

/* ---------------------------------------------------------------------
   digest (editorial picks wrapper) inherits .zp-section spacing
   ------------------------------------------------------------------- */
.zp-digest { padding-block: 56px; }

/* ---------------------------------------------------------------------
   comparison tables — real <table>, zebra rows, one rule under head
   ------------------------------------------------------------------- */
.zp-matrix { width: 100%; }
.zp-matrix__scroll { overflow-x: auto; border-radius: var(--zp-radius-card); background: var(--zp-s1); }
.zp-matrix table { width: 100%; border-collapse: collapse; min-width: 640px; }
.zp-matrix caption { text-align: left; padding: 18px 20px 4px; font-size: 13px; color: var(--zp-steel); }
.zp-matrix th, .zp-matrix td { text-align: left; padding: 12px 20px; font-size: 14px; }
.zp-matrix thead th {
  color: var(--zp-mid); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid var(--zp-fog);
}
.zp-matrix tbody th { color: var(--zp-white); font-weight: 600; white-space: nowrap; }
.zp-matrix tbody th a { color: inherit; }
.zp-matrix tbody th a:hover { color: var(--zp-accent-text); }
.zp-matrix tbody td { color: var(--zp-mid); }
.zp-matrix tbody tr:nth-child(even) { background: rgba(255,255,255,.025); }
.zp-matrix__note { font-size: 13px; color: var(--zp-steel); margin-top: 14px; max-width: 70ch; }

/* ---------------------------------------------------------------------
   FAQ / query — native details, full container width
   ------------------------------------------------------------------- */
.zp-query__list { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.zp-query__item {
  background: var(--zp-s1); border-radius: var(--zp-radius-card); padding: 18px 22px; width: 100%;
}
.zp-query__item summary {
  cursor: pointer; font-size: 16px; font-weight: 600; color: var(--zp-white);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.zp-query__item summary::-webkit-details-marker { display: none; }
.zp-query__item summary::after {
  content: ''; width: 10px; height: 10px; flex: none;
  border-right: 2px solid var(--zp-mid); border-bottom: 2px solid var(--zp-mid);
  transform: rotate(45deg); transition: transform .18s ease;
}
.zp-query__item[open] summary::after { transform: rotate(-135deg); }
.zp-query__item p { margin-top: 14px; font-size: 15px; }

/* ---------------------------------------------------------------------
   brief — narrow editorial blurb block, also used for about/contact/
   reference/legal page bodies
   ------------------------------------------------------------------- */
.zp-brief { padding-block: 56px; }
.zp-brief__inner {
  background: var(--zp-s1); border-radius: var(--zp-radius-lg);
  padding: 40px clamp(24px, 5vw, 56px);
}
.zp-brief__inner p { max-width: 72ch; }
.zp-brief__inner > .zp-nudge { margin-top: 18px; }

.zp-brief--page, .zp-brief--legal { padding-block: 44px 72px; }
.zp-brief--page section, .zp-brief--legal section { margin-top: 34px; }
.zp-brief--page h2, .zp-brief--legal h2 { font-size: 21px; margin-bottom: 12px; color: var(--zp-white); }
.zp-brief--legal ul { margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.zp-brief--legal li { font-size: 15px; color: var(--zp-mid); padding-left: 18px; position: relative; }
.zp-brief--legal li::before { content: ''; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--zp-accent); }
.zp-legal__updated { color: var(--zp-steel); font-size: 13px; margin-top: 10px; }

.zp-panel__head { padding-block: 8px 8px; max-width: 78ch; }
.zp-panel__head h1 { font-size: clamp(28px, 4vw, 42px); color: var(--zp-white); margin: 6px 0 14px; }
.zp-verdict { font-size: 18px; color: var(--zp-mid); max-width: 62ch; }
.zp-panel__mailrow { display: flex; align-items: center; gap: 10px; margin-top: 24px; }

/* ---------------------------------------------------------------------
   review article layout
   ------------------------------------------------------------------- */
.zp-review { padding-block: 8px 60px; display: flex; flex-direction: column; gap: 38px; }
.zp-review__top { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
.zp-review h2 { font-size: 23px; color: var(--zp-white); margin-bottom: 12px; }
.zp-review section p + p { margin-top: 1em; }

.zp-panel--facts {
  background: var(--zp-s1); border-radius: var(--zp-radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.zp-panel__icon { width: 96px; height: 96px; border-radius: 20px; }
.zp-panel__facts { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.zp-panel__facts div { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.zp-panel__facts dt { color: var(--zp-steel); }
.zp-panel__facts dd { margin: 0; color: var(--zp-white); text-align: right; font-weight: 500; }
.zp-panel__score { font-size: 22px; font-weight: 700; color: var(--zp-accent-text); }
.zp-panel__score span { font-size: 13px; color: var(--zp-steel); font-weight: 500; }

.zp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.zp-gallery img { border-radius: var(--zp-radius-card); width: 100%; height: auto; }

@media (max-width: 760px) {
  .zp-review__top { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   pros / cons
   ------------------------------------------------------------------- */
.zp-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.zp-proscons__col { background: var(--zp-s1); border-radius: var(--zp-radius-lg); padding: 24px; }
.zp-proscons__col h2 { font-size: 17px; margin-bottom: 14px; }
.zp-proscons__col ul { display: flex; flex-direction: column; gap: 12px; }
.zp-proscons__col li { display: flex; gap: 10px; font-size: 14px; color: var(--zp-mid); align-items: flex-start; }
.zp-proscons__col--pro .zp-ico { color: var(--zp-accent-text); margin-top: 2px; }
.zp-proscons__col--con .zp-ico { color: var(--zp-steel); margin-top: 2px; }
@media (max-width: 640px) { .zp-proscons { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   similar games / roundup / versus
   ------------------------------------------------------------------- */
.zp-similar { padding-block: 8px 40px; }

.zp-rank { display: flex; flex-direction: column; gap: 22px; padding-block: 8px 40px; }
.zp-rank__item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.zp-rank__num { font-size: 26px; font-weight: 700; color: var(--zp-accent-text); line-height: 1.4; }
.zp-rank__body { display: flex; flex-direction: column; gap: 10px; }
.zp-rank__note { font-size: 14px; color: var(--zp-mid); max-width: 68ch; }

.zp-versus { padding-block: 8px 40px; display: flex; flex-direction: column; gap: 24px; }
.zp-versus__head { display: flex; align-items: center; justify-content: center; gap: 28px; }
.zp-versus__card { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.zp-versus__card img { width: 84px; height: 84px; border-radius: 18px; }
.zp-versus__card span { font-size: 14px; font-weight: 600; max-width: 16ch; }
.zp-versus__vs { color: var(--zp-steel); font-size: 14px; font-weight: 600; }
@media (max-width: 560px) { .zp-versus__head { gap: 16px; } .zp-versus__card span { max-width: 11ch; font-size: 12px; } }

/* ---------------------------------------------------------------------
   sitemap.html
   ------------------------------------------------------------------- */
.zp-sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 30px; }
.zp-sitemap__group h2 { font-size: 15px; color: var(--zp-accent-text); margin-bottom: 10px; }
.zp-sitemap__group ul { display: flex; flex-direction: column; gap: 8px; }
.zp-sitemap__group a { font-size: 14px; color: var(--zp-mid); }
.zp-sitemap__group a:hover { color: var(--zp-white); }

/* ---------------------------------------------------------------------
   breadcrumbs
   ------------------------------------------------------------------- */
.zp-crumb { padding-top: 18px; }
.zp-crumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-size: 13px; color: var(--zp-steel); }
.zp-crumb__item { display: flex; align-items: center; gap: 4px; }
.zp-crumb a { color: var(--zp-steel); }
.zp-crumb a:hover { color: var(--zp-white); }
.zp-crumb [aria-current] { color: var(--zp-mid); }
.zp-crumb__sep { width: 13px; height: 13px; color: var(--zp-steel); }

/* ---------------------------------------------------------------------
   contact / signal block (footer)
   ------------------------------------------------------------------- */
.zp-signal { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--zp-fog); max-width: 40ch; }
.zp-signal__title { font-size: 14px; color: var(--zp-white); margin-bottom: 8px; }
.zp-signal p { font-size: 13px; margin-bottom: 14px; }
.zp-signal__link { font-size: 13px; padding: 9px 18px; }

/* ---------------------------------------------------------------------
   footer
   ------------------------------------------------------------------- */
.zp-footline { background: var(--zp-s1); margin-top: 40px; }
.zp-footline__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-block: 56px 40px;
}
.zp-footline__brand p { font-size: 13px; max-width: 34ch; margin-top: 12px; }
.zp-footline__col h2 { font-size: 13px; color: var(--zp-steel); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.zp-footline__col ul { display: flex; flex-direction: column; gap: 9px; }
.zp-footline__col a { font-size: 13px; color: var(--zp-mid); }
.zp-footline__col a:hover { color: var(--zp-white); }
.zp-footline__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-block: 20px 28px; font-size: 12px; color: var(--zp-steel);
}

@media (max-width: 900px) {
  .zp-footline__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .zp-footline__inner { grid-template-columns: 1fr; }
  .zp-footline__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------
   cookie notice
   ------------------------------------------------------------------- */
.zp-notice {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  max-width: 560px; margin-inline: auto;
}
.zp-notice__inner {
  background: var(--zp-s2); border: 1px solid var(--zp-fog); border-radius: var(--zp-radius-lg);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 14px;
}
.zp-notice p { font-size: 13px; color: var(--zp-mid); margin: 0; }
.zp-notice a { color: var(--zp-white); text-decoration: underline; text-underline-offset: 2px; }
.zp-notice__actions { display: flex; gap: 10px; }
.zp-notice__actions .zp-nudge { padding: 10px 18px; font-size: 13px; }

/* ---------------------------------------------------------------------
   scroll reveal — respects prefers-reduced-motion
   ------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  [data-zp-reveal] {
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
  }
  [data-zp-reveal].is-shown { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   utility section wrapper reused by generic .zp-section blocks
   ------------------------------------------------------------------- */
.zp-showcase, .zp-digest, .zp-query { padding-block: 56px; }
