/* ============================================================
   CADADDA — Design System
   Engineering-editorial. Ink on paper, signal red accent.
   Type: Archivo (grotesk) + IBM Plex Mono (spec labels)
   ============================================================ */

/* Fonts are loaded per-page via <link rel="preconnect"> + stylesheet link
   (was a render-blocking @import here — CSS→font discovery now parallel). */

:root {
  /* ---- Color ---- */
  --paper:      #f6f6f4;   /* cool near-white page */
  --paper-2:    #eeeeec;   /* subtle panel */
  --card:       #ffffff;
  --ink:        #1a1a19;   /* near-black */
  --ink-2:      #55554f;   /* secondary text */
  --ink-3:      #8a8a82;   /* tertiary / captions */
  --line:       #dedcd6;   /* hairline borders */
  --line-2:     #c7c5bd;
  --accent:     #e11b22;   /* CADADDA signal red */
  --accent-ink: #b3151b;   /* darker red for text/hover */
  --accent-wash:#fdeceb;   /* faint red tint */
  --ok:         #1f7a4d;   /* success green */

  /* dark surfaces */
  --night:      #141413;
  --night-2:    #201f1d;
  --night-line: #35342f;
  --on-night:   #f3f2ee;
  --on-night-2: #a7a59c;

  /* ---- Type ---- */
  --sans: 'Archivo', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --serif: 'Newsreader', Georgia, serif;

  /* ---- Layout ---- */
  --wrap: 1200px;
  --wrap-wide: 1360px;
  --gut: 24px;
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }

/* ---- Rhythm & containers ---- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 8vw, 116px); }
.section-tight { padding-block: clamp(40px, 5vw, 72px); }

/* ---- Type scale ---- */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.display {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; }
.h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-weight: 700; letter-spacing: -0.015em; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* ---- Eyebrow / spec label ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--accent);
  display: inline-block;
}
.eyebrow.plain { color: var(--ink-3); }
.eyebrow.plain::before { background: var(--line-2); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  letter-spacing: -0.01em; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); color: #fff; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-wa { background: #1faf54; color:#fff; }
.btn-wa:hover { background: #178a42; color:#fff; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-sm { padding: 9px 15px; font-size: 0.86rem; }
.btn svg { width: 18px; height: 18px; }

/* ---- Chips / tags ---- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-2); background: var(--card);
}
.chip.solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip.red { background: var(--accent-wash); color: var(--accent-ink); border-color: #f4cdcb; }

/* ---- Cards ---- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card.hover:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.28); }

/* ---- Image placeholder (striped) ---- */
.ph {
  position: relative;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(-45deg, transparent 0 11px, rgba(0,0,0,0.035) 11px 12px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-align: center;
  overflow: hidden;
}
.ph span { padding: 6px 10px; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; }
.ph.dark { background-color: #26251f; background-image: repeating-linear-gradient(-45deg, transparent 0 11px, rgba(255,255,255,0.04) 11px 12px); color: var(--on-night-2); }
.ph.dark span { background: #1a1915; border-color: var(--night-line); }

/* ---- Rule / divider ---- */
.rule { height: 1px; background: var(--line); border: 0; }

/* ---- Utility ---- */
.mono { font-family: var(--mono); }
.muted { color: var(--ink-2); }
.center { text-align: center; }
.grid { display: grid; gap: var(--gut); }
.flex { display: flex; }
.eased { transition: all .18s ease; }

/* ---- Focus ring (a11y) ---- */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   SHARED SITE CHROME  (util bar · nav · footer · cta · reveal)
   Used by pages that load assets/site.js
   ============================================================ */
.util { background: var(--night); color: var(--on-night-2); font-size: .78rem; font-family: var(--mono); letter-spacing: .02em; }
.util .wrap-wide { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.util a { color: var(--on-night-2); } .util a:hover { color: #fff; }
.util .u-left { display: flex; gap: 22px; } .util .u-right { display: flex; gap: 20px; align-items: center; }
.util .dot { color: var(--accent); }
/* nav dropdown (split: Courses link navigates, caret opens panel) */
.navdrop { position: relative; display: inline-flex; align-items: center; }
.navdrop-caret { background: none; border: 0; padding: 4px 2px; cursor: pointer; color: inherit; display: inline-flex; align-items: center; }
.navdrop-caret .car { width: 16px; height: 16px; transition: transform .16s ease; }
.navdrop.open .navdrop-caret .car { transform: rotate(180deg); }
.navdrop-panel { position: absolute; top: calc(100% + 10px); left: -12px; min-width: 240px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.35); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 60; }
.navdrop.open .navdrop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.navdrop-item { display: block; padding: 9px 12px; border-radius: 6px; font-size: .9rem; color: var(--ink); }
.navdrop-item:hover, .navdrop-item:focus-visible { background: var(--paper); }
.navdrop-item.is-all { font-weight: 600; border-bottom: 1px solid var(--line); border-radius: 6px 6px 0 0; margin-bottom: 4px; }
/* premium mega menu (shared across all marketing pages) */
.mega { position: relative; display: inline-flex; align-items: center; }
.mega-panel { position: absolute; top: calc(100% + 8px); left: -20px; width: 640px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.35); padding: 22px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 26px; z-index: 60; }
.mega:hover .mega-panel, .mega.open .mega-panel, .mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col-h { grid-column: 1 / -1; font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); padding: 4px 10px 8px; }
.mega-item { display: flex; gap: 12px; padding: 10px; border-radius: 6px; }
.mega-item:hover, .mega-item:focus-visible { background: var(--paper); }
.mega-item .mi-ic { width: 34px; height: 34px; flex: none; border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: .7rem; color: var(--accent-ink); background: var(--paper); }
.mega-item b { display: block; font-size: .9rem; color: var(--ink); font-weight: 600; }
.mega-item small { color: var(--ink-3); font-size: .78rem; }
.mega-all { grid-column: 1 / -1; border-bottom: 1px solid var(--line); border-radius: 6px 6px 0 0; }
/* drawer accordion */
.d-acc-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 0; padding: 12px 0; font: inherit; color: inherit; cursor: pointer; }
.d-acc-toggle svg { width: 18px; height: 18px; transition: transform .16s ease; }
.d-acc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.d-acc-sub { padding-left: 14px; }
.d-acc-sub a { display: block; padding: 8px 0; font-size: .92rem; }
/* global enquiry popup (shared) */
#enq-modal { position: fixed; inset: 0; z-index: 320; display: none; }
#enq-modal .enq-scrim { position: absolute; inset: 0; background: rgba(20,20,19,.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s ease; }
#enq-modal.open .enq-scrim { opacity: 1; }
#enq-modal .enq-dialog { position: relative; max-width: 560px; width: calc(100% - 32px); max-height: 90vh; overflow: auto; margin: 5vh auto; background: var(--card); border-radius: 16px; padding: clamp(22px,3vw,32px); box-shadow: 0 30px 70px rgba(0,0,0,.5); transform: scale(.94); opacity: 0; transition: transform .2s ease, opacity .2s ease; }
#enq-modal.open .enq-dialog { transform: scale(1); opacity: 1; }
#enq-modal .enq-x { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border-radius: 100px; border: 1px solid var(--line); background: var(--paper); font-size: 1.2rem; cursor: pointer; }
#enq-modal h3 { font-size: 1.35rem; margin: 0 0 4px; }
#enq-modal .enq-sub { color: var(--ink-2); font-size: .9rem; margin: 0 0 18px; }
#enq-modal .enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#enq-modal .enq-f { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; }
#enq-modal .enq-f.enq-full { grid-column: 1/-1; margin-top: 12px; }
#enq-modal .enq-f span { font-weight: 600; color: var(--ink-2); }
#enq-modal .enq-f input, #enq-modal .enq-f select, #enq-modal .enq-f textarea { border: 1px solid var(--line-strong, var(--line)); border-radius: 6px; padding: 9px 11px; font: inherit; background: var(--card); }
#enq-modal .enq-check { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-2); margin: 14px 0 0; }
#enq-modal .enq-err { background: #fdeceb; color: #b3161c; border-radius: 6px; padding: 9px 12px; font-size: .82rem; margin-top: 12px; }
#enq-modal .enq-submit { width: 100%; justify-content: center; margin-top: 16px; }
#enq-modal .enq-success { text-align: center; padding: 12px 0; }
#enq-modal .enq-tick { width: 60px; height: 60px; border-radius: 100px; background: #e6f4ea; color: #1a7f37; font-size: 1.8rem; display: grid; place-items: center; margin: 0 auto 14px; }
@media (max-width: 560px){ #enq-modal .enq-grid { grid-template-columns: 1fr; } }
.util .u-right .u-btn { border: 1px solid var(--night-line, rgba(255,255,255,.22)); color: var(--on-night, #f6f6f4); padding: 3px 13px; border-radius: 4px; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.util .u-right .u-btn:hover { color: #fff; border-color: var(--accent); }
@media (max-width: 860px){ .util .u-left span:not(:first-child), .util .u-right a:not(.hl):not(.u-btn){ display: none; } }

.nav { position: sticky; top: 0; z-index: 60; background: rgba(246,246,244,.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav .bar { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav .logo img { height: 30px; width: auto; }
.nav .links { display: flex; gap: 26px; margin-left: 8px; }
.nav .links a { color: var(--ink); font-weight: 500; font-size: .94rem; letter-spacing: -0.01em; padding: 6px 0; position: relative; }
.nav .links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); transition: width .18s ease; }
.nav .links a:hover::after, .nav .links a.active::after { width: 100%; }
.nav .nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav .burger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 4px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
.nav .burger svg { width: 20px; height: 20px; }
@media (max-width: 1000px){ .nav .links, .nav .nav-cta .btn { display: none; } .nav .burger { display: flex; } }

.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .2s; }
.drawer.open .scrim { opacity: 1; }
.drawer .sheet { position: absolute; top: 0; right: 0; width: min(360px, 86vw); height: 100%; background: var(--paper); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .22s ease; padding: 20px; overflow-y: auto; }
.drawer.open .sheet { transform: translateX(0); }
.drawer .sheet a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.drawer .d-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer .d-top img { height: 26px; }
.drawer .x { background: none; border: 1px solid var(--line-2); border-radius: 4px; width: 40px; height: 40px; font-size: 20px; cursor: pointer; }

.crumb { font-family: var(--mono); font-size: .76rem; color: var(--ink-3); letter-spacing: .03em; display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 0 0; }
.crumb a { color: var(--ink-3); } .crumb a:hover { color: var(--accent-ink); }
.crumb .sep { opacity: .5; }

/* page hero (secondary pages) */
.page-hero { padding-block: clamp(28px,4vw,52px) clamp(32px,4vw,56px); }
.page-hero h1 { font-size: clamp(2.2rem,4.4vw,3.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; margin-bottom: 18px; }
.page-hero h1 .mark { color: var(--accent); }
.page-hero .lead { max-width: 56ch; }

/* stats strip */
.stats-strip { border-block: 1px solid var(--line); background: var(--card); }
.stats-strip .row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-strip .st { padding: 30px var(--gut); border-left: 1px solid var(--line); }
.stats-strip .st:first-child { border-left: 0; }
.stats-strip .st b { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; letter-spacing: -0.03em; display: block; }
.stats-strip .st b em { color: var(--accent); font-style: normal; }
.stats-strip .st span { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 760px){ .stats-strip .row { grid-template-columns: 1fr 1fr; } .stats-strip .st:nth-child(odd){ border-left: 0; } .stats-strip .st { border-top: 1px solid var(--line); } }

/* section head */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; }
.sec-head .st-l { max-width: 640px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head p { color: var(--ink-2); margin: 12px 0 0; font-size: 1.05rem; }
@media (max-width: 700px){ .sec-head { flex-direction: column; align-items: flex-start; } }

/* final CTA */
.cta-final { background: var(--accent); color: #fff; border-radius: 16px; padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255,255,255,.05) 22px 24px); }
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-final .btn-ink { background: #fff; color: var(--ink); } .cta-final .btn-ink:hover { background: var(--ink); color: #fff; }
.cta-final .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; } .cta-final .btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-final .cta-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final small { display: block; margin-top: 22px; font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.75); letter-spacing: .04em; }

/* footer */
.foot { background: var(--night); color: var(--on-night-2); padding-top: 64px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--night-line); }
.foot .word { font-weight: 800; font-size: 1.8rem; letter-spacing: -0.03em; color: #fff; margin-bottom: 16px; }
.foot .word .r { color: var(--accent); }
.foot p { max-width: 34ch; font-size: .9rem; line-height: 1.6; }
.foot h4 { color: #fff; font-size: .78rem; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot ul a { color: var(--on-night-2); font-size: .9rem; } .foot ul a:hover { color: #fff; }
.foot-contact { display: flex; gap: 12px; margin-top: 18px; }
.foot-contact a { width: 40px; height: 40px; border: 1px solid var(--night-line); border-radius: 6px; display: grid; place-items: center; color: var(--on-night-2); }
.foot-contact a:hover { border-color: var(--accent); color: #fff; }
.foot-contact svg { width: 18px; height: 18px; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 40px; font-family: var(--mono); font-size: .78rem; flex-wrap: wrap; gap: 12px; }
.foot-bot .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 900px){ .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-top { grid-template-columns: 1fr; } }

/* mobile sticky cta + whatsapp float */
.mcta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none; background: var(--card); border-top: 1px solid var(--line); padding: 10px 12px; gap: 10px; box-shadow: 0 -8px 24px -16px rgba(0,0,0,.3); }
.mcta .btn { flex: 1; justify-content: center; }
.wafloat { position: fixed; right: 22px; bottom: 22px; z-index: 65; width: 56px; height: 56px; border-radius: 100px; background: #1faf54; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(31,175,84,.6); }
.wafloat svg { width: 28px; height: 28px; color: #fff; }
@media (max-width: 700px){ .mcta { display: flex; } .wafloat { bottom: 80px; right: 16px; } body.has-mcta { padding-bottom: 68px; } }

/* reveal */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }

/* ============ standardized form feedback (shared/forms.js) ============ */
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--accent); }
.f-err { display: block; color: var(--accent-ink); font-size: .78rem; margin-top: 6px; }
.f-alert { background: var(--accent-wash); border: 1px solid #f4cdcb; color: var(--accent-ink); border-radius: 8px; padding: 12px 14px; font-size: .9rem; margin-bottom: 14px; }
.f-done { display: none; margin-top: 16px; padding: 14px; background: #eaf6ef; border: 1px solid #bfe3cd; border-radius: 8px; align-items: center; gap: 10px; color: var(--ok); font-size: .92rem; }

/* ============ skip link (a11y) ============ */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 0 0 8px 0; font-weight: 600; font-size: .9rem; }
.skip-link:focus { left: 0; }

/* ============ touch-target expansion (invisible, a11y) ============ */
.util a, .foot ul a, .fb-links a, .crumb a, .c-link, .art-hero .share a { position: relative; }
.util a::after, .foot ul a::after, .fb-links a::after, .crumb a::after, .c-link::after, .art-hero .share a::after { content: ""; position: absolute; inset: -6px; }

/* ---- demo media library: images inside placeholder slots ---- */
.ph{position:relative;overflow:hidden}
.ph.has-img>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}.ph.has-img>.chip{position:absolute;z-index:2}
.ph .play-badge{position:absolute;inset:0;margin:auto;width:56px;height:56px;border-radius:999px;background:rgba(20,20,19,.62);color:#fff;display:grid;place-items:center;z-index:2;pointer-events:none}
.ph .play-badge svg{width:24px;height:24px;margin-left:2px}
.ph .play-badge.lg{width:72px;height:72px}
.ph .play-badge.lg svg{width:30px;height:30px}
