/* Self-hosted Poppins (SIL OFL) — subset latin, woff2 */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/poppins-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/assets/fonts/poppins-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/assets/fonts/poppins-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/assets/fonts/poppins-latin-700-normal.woff2') format('woff2'); }
/* Metric-matched fallback: Arial adjusted to Poppins metrics — no layout shift on swap */
@font-face { font-family: 'Poppins-fb'; src: local('Arial');
  size-adjust: 112.9%; ascent-override: 93.8%; descent-override: 31.3%; line-gap-override: 8.9%; }

/* ==========================================================================
   Scaffold Insurance — design system v2 "dark canvas"
   Visual grammar modelled on confused.com's current look:
   near-black canvas, Poppins, chunky arrow buttons, product-colour bands,
   white content cards. Blue = scaffolding · Orange = roofing/CTA.
   ========================================================================== */

:root {
  --ink: #1f1f1f;
  --ink-2: #2b2b2b;
  --ink-3: #3c3c3c;
  --grey-dark: #8a8a8a;
  --grey-mid: #d4d4d4;
  --grey-light: #efefef;
  --off-white: #f3f3f3;
  --white: #ffffff;

  --blue: #58aae0;
  --blue-strong: #2772a9;
  --blue-highlight: #15bfff;
  --blue-secondary: #8ac4e9;
  --blue-pale: #e9f3fb;

  --orange: #ea9665;
  --orange-highlight: #ff7847;
  --orange-secondary: #f0b693;
  --orange-pale: #fdf0e8;

  --green: #4db6a1;
  --green-pale: #e8f6f2;
  --red: #e2706e;
  --red-pale: #fdeeee;
  --yellow: #facf61;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 3px;

  --font: 'Poppins', 'Poppins-fb', Helvetica, Arial, sans-serif;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.25);
  --max-w: 1120px;
}

*, *::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;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--white);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-secondary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-highlight); }

:focus-visible {
  outline: 3px solid var(--blue-highlight);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--white); color: var(--ink);
  padding: 10px 18px; border-radius: 0 0 var(--radius) 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.55rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; margin-top: 1.6em; }
h3 { font-size: 1.18rem; font-weight: 600; margin-top: 1.4em; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.3em; }
li { margin-bottom: 0.45em; }
strong { font-weight: 600; }

/* Eyebrow with coupler node */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-secondary); margin-bottom: 16px;
}
.eyebrow--orange { color: var(--orange-secondary); }

/* On light bands */
.band--light .eyebrow { color: var(--ink-3); }
.band--blue .eyebrow { color: var(--ink); }

/* --------------------------------------------------------------------------
   Buttons — chunky, arrow-after, product colours, black text
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-weight: 600; font-size: 1.12rem;
  padding: 18px 60px 18px 24px; border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none; color: var(--ink);
  transition: background-color 0.15s ease, transform 0.12s ease;
}
.btn::after {
  content: "→";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-weight: 700; font-size: 1.25em;
  transition: transform 0.2s ease;
}
.btn { box-shadow: 0 2px 0 rgba(0,0,0,0.18); }
.btn:hover { color: var(--ink); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
.btn:hover::after { transform: translate(6px, -50%); }
.btn:active { transform: translateY(0); }

.btn--cta { background: var(--orange); }
.btn--cta:hover { background: var(--orange-highlight); }
.btn--blue { background: var(--blue); }
.btn--blue:hover { background: var(--blue-highlight); }
.btn--white { background: var(--white); }
.btn--white:hover { background: var(--grey-light); }

.btn .icon {
  width: 22px; height: 22px; flex: none;
}

.btn--compact { font-size: 0.95rem; padding: 11px 44px 11px 18px; }
.btn--compact::after { right: 16px; font-size: 1.1em; }

/* Arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--white); text-decoration: none;
  border-bottom: 2px solid var(--white); padding-bottom: 2px;
}
.arrow-link::after { content: "→"; transition: transform 0.15s ease; }
.arrow-link:hover { color: var(--blue-secondary); border-color: var(--blue-secondary); }
.arrow-link:hover::after { transform: translateX(4px); }
.band--light .arrow-link { color: var(--ink); border-color: var(--ink); }
.band--light .arrow-link:hover { color: var(--blue-strong); border-color: var(--blue-strong); }

/* --------------------------------------------------------------------------
   Header — dark, white wordmark, white quote button
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 78px;
}

.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.logo__name { font-weight: 700; font-size: 1.35rem; color: var(--white); letter-spacing: -0.02em; }
.logo__name span { color: var(--blue); }
.logo__tag { font-size: 0.66rem; font-weight: 500; color: var(--grey-dark); letter-spacing: 0.05em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav button {
  font-family: var(--font); font-size: 0.95rem; font-weight: 500;
  color: var(--white); text-decoration: none; background: none; border: none;
  padding: 10px 14px; border-radius: var(--radius); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav > ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav > ul > li { position: relative; margin: 0; }
.nav a:hover, .nav button:hover { background: var(--ink-3); color: var(--white); }

.nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease; }
.nav li.open > button .caret { transform: rotate(-135deg) translateY(-2px); }

/* --------------------------------------------------------------------------
   Mega menu — full-width product-colour panel + dimmed page mask
   -------------------------------------------------------------------------- */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  z-index: 99;
}
.mega[hidden] { display: none; }
.mega--blue { background: var(--blue); }
.mega--blue .mega__secondary { background: var(--blue-secondary); }
.mega--orange { background: var(--orange); }
.mega--orange .mega__secondary { background: var(--orange-secondary); }

.mega__inner { position: relative; padding-top: 34px; padding-bottom: 34px; }

.mega__close {
  position: absolute; top: 22px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.mega__close:hover { background: var(--ink-3); }

.mega__groups {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; align-items: start; padding-right: 70px;
}
.mega__list { list-style: none; margin: 0; padding: 0; }
.mega__list li { margin: 0; }
.mega__list a {
  display: block; padding: 13px 12px 13px 0;
  color: var(--ink); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid rgba(31, 31, 31, 0.25);
}
.mega__list li:last-child a { border-bottom: none; }
.mega__list a strong { font-weight: 700; }
.mega__list a:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.mega__group--cta { justify-self: end; text-align: left; }
.mega__cta-label { font-weight: 600; margin: 4px 0 14px; }

.mega__secondary { padding: 14px 0; }
.mega__secondary-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 34px;
}
.mega__secondary-list li { margin: 0; }
.mega__secondary-list a { color: var(--ink); text-decoration: none; font-size: 0.94rem; font-weight: 500; padding: 6px 0; display: inline-block; }

/* dimmed page behind an open panel */
.page-mask {
  position: fixed; inset: 0; top: 78px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
}
.page-mask[hidden] { display: none; }
body.mega-open { overflow: hidden; }

/* header quote button: white pill, compact — .nav a prefix needed to outrank .nav a resets */
.nav a.nav__cta, .nav .nav__cta {
  margin-left: 10px;
  background: var(--white); color: var(--ink);
  font-weight: 600; padding: 11px 44px 11px 18px;
}
.nav a.nav__cta:hover, .nav .nav__cta:hover { background: var(--grey-light); color: var(--ink); }

.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink-3);
  border-radius: var(--radius); padding: 9px 12px; cursor: pointer;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem; color: var(--white);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-3);
    padding: 12px 24px 20px; box-shadow: var(--shadow-card);
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; }
  .nav > ul > li { width: 100%; }
  .nav a, .nav button { width: 100%; justify-content: space-between; }
  .nav__cta { margin: 12px 0 0; justify-content: center; }
  .mega { position: static; box-shadow: none; }
  .mega__groups { grid-template-columns: 1fr; gap: 18px; padding-right: 0; }
  .mega__group--cta { justify-self: start; }
  .mega__inner { padding-top: 22px; padding-bottom: 22px; }
  .mega__close { top: 14px; right: 18px; width: 36px; height: 36px; }
  .page-mask { display: none !important; }
}

/* --------------------------------------------------------------------------
   Bands — the page is built from full-width colour bands
   -------------------------------------------------------------------------- */
.band { padding: 60px 0; }
.band--dark { background: var(--ink); color: var(--white); }
.band--light { background: var(--white); color: var(--ink); }
.band--tint { background: var(--off-white); color: var(--ink); }
.band--blue { background: var(--blue); color: var(--ink); }
.band--orange { background: var(--orange); color: var(--ink); }
.band h2:first-of-type { margin-top: 0; }
.band--light a, .band--tint a { color: var(--blue-strong); }
.band--light a:hover, .band--tint a:hover { color: var(--blue-highlight); }
.band--blue a { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding: 64px 0 72px; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero__copy p.lead { font-size: 1.14rem; color: var(--grey-mid); }
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 30px; }
.hero__actions .arrow-link { margin-top: 6px; }
.hero__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 44px 0 52px; }
}

.hero--article { padding: 56px 0 60px; }
.hero--article .standfirst { font-size: 1.12rem; color: var(--grey-mid); max-width: 800px; margin: 0; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 18px; margin: 30px 0 8px; padding: 0; list-style: none; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1060px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .card-grid--3 { grid-template-columns: 1fr; } .card-grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .card-grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-card); margin: 0;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
.card h3 { margin-top: 0; }
.card h2 { font-size: 1.18rem; font-weight: 600; margin: 0 0 0.5em; letter-spacing: 0; }
.video-card h2 { font-size: 1.18rem; font-weight: 600; margin: 14px 0 0.4em; letter-spacing: 0; }
.card a { color: var(--blue-strong); }

/* scaffold-type tiles */
.tile { display: flex; align-items: center; gap: 12px; font-weight: 600; padding: 20px 18px; }
.tile .icon { width: 24px; height: 24px; flex: none; color: var(--blue-strong); }
.tile--link { padding: 0; overflow: hidden; }
.tile--link a {
  display: flex; align-items: center; gap: 12px; width: 100%; height: 100%;
  padding: 20px 18px; color: var(--ink) !important; text-decoration: none; border-radius: var(--radius);
  font-size: 0.98rem; white-space: nowrap;
}
.tile--link a::after { content: "→"; margin-left: auto; padding-left: 10px; font-weight: 700; color: var(--orange-highlight); }
.tile--link a:hover { background: var(--orange-pale); }
.tile--link .icon { color: var(--blue-strong); }

/* cover checklist */
.cover-list { list-style: none; padding: 0; margin: 18px 0 0; }
.cover-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0; margin: 0;
  border-bottom: 1px solid var(--grey-light);
}
.cover-list li:last-child { border-bottom: none; }
.cover-list .icon { width: 22px; height: 22px; flex: none; margin-top: 3px; color: var(--blue-strong); }
.cover-list--extra .icon { color: var(--orange-highlight); }

/* sign-family cards */
.card--sign-hazard  { border-top: 6px solid var(--red);   background: linear-gradient(var(--red-pale), var(--white) 55%); }
.card--sign-advice  { border-top: 6px solid var(--blue);  background: linear-gradient(var(--blue-pale), var(--white) 55%); }
.card--sign-assist  { border-top: 6px solid var(--green); background: linear-gradient(var(--green-pale), var(--white) 55%); }

/* --------------------------------------------------------------------------
   Accordion — white cards on light band
   -------------------------------------------------------------------------- */
.accordion { margin: 26px 0; }
.accordion details {
  background: var(--white); border: 1px solid var(--grey-mid);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.accordion summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; font-weight: 600; font-size: 1.08rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg); transition: transform 0.15s ease; margin-top: -4px;
}
.accordion details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.accordion details[open] summary { border-bottom: 1px solid var(--grey-light); }
.accordion .accordion__body { padding: 18px 24px 8px; }
.accordion summary:hover { background: var(--blue-pale); }

/* --------------------------------------------------------------------------
   CTA band — full-width orange, black text, white arrow button
   -------------------------------------------------------------------------- */
.cta-band { background: var(--orange); color: var(--ink); padding: 56px 0; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; font-weight: 500; }
.cta-band .btn { flex: none; }

/* --------------------------------------------------------------------------
   Contact form (on light band)
   -------------------------------------------------------------------------- */
.form { max-width: 620px; }
.form label { display: block; font-weight: 600; font-size: 0.95rem; margin: 20px 0 7px; }
.form input, .form textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 2px solid var(--grey-mid); border-radius: var(--radius);
  background: var(--white);
}
.form input:focus, .form textarea:focus { border-color: var(--blue-strong); outline: none; }
.form textarea { min-height: 150px; resize: vertical; }
.form .btn { margin-top: 26px; }
.form__note { font-size: 0.88rem; color: var(--ink-3); margin-top: 14px; }

/* --------------------------------------------------------------------------
   Footer — dark, back-to-top
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--grey-mid); border-top: 1px solid var(--ink-3); position: relative; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--blue-secondary); }
.site-footer a.back-to-top, .back-to-top {
  position: absolute; top: -26px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow-card);
}
.site-footer a.back-to-top { color: var(--ink); }
.site-footer a.back-to-top:hover { background: var(--blue); color: var(--ink); }
.site-footer__top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px;
  padding: 56px 0 40px; border-bottom: 1px solid var(--ink-3);
}
.site-footer__h { color: var(--white); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.94rem; }
.site-footer__brand p { font-size: 0.92rem; max-width: 320px; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 22px 0; font-size: 0.85rem; }
.site-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.site-footer__legal li { margin: 0; }
@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__top { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.prose { max-width: 800px; }
.prose h2 { scroll-margin-top: 100px; }


/* --------------------------------------------------------------------------
   Ad placeholders — fixed reserved dimensions so ads can never shift layout
   -------------------------------------------------------------------------- */
.ad {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; margin: 0 auto;
  background: var(--ink-2); border: 1px dashed var(--grey-dark);
  border-radius: var(--radius); color: var(--grey-mid);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center;
}
.band--light .ad, .band--tint .ad { background: var(--off-white); border-color: var(--grey-mid); color: #5a5a5a; }
.ad__size { font-weight: 500; letter-spacing: 0.08em; }

.ad-band { padding: 28px 0; background: var(--ink); }
.ad--leaderboard { width: 100%; max-width: 728px; height: 90px; }
@media (max-width: 780px) { .ad--leaderboard { max-width: 320px; height: 100px; } }
.ad--mpu { width: 300px; height: 250px; margin: 36px auto; }
.ad--sky { width: 300px; height: 600px; position: sticky; top: 96px; }

/* --------------------------------------------------------------------------
   Article layout with sticky ad rail
   -------------------------------------------------------------------------- */
.article-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px; align-items: start;
}
.article-main { min-width: 0; max-width: 760px; }
.ad-rail { min-height: 600px; }
@media (max-width: 1020px) {
  .article-grid { grid-template-columns: 1fr; }
  .ad-rail { display: none; }
}

/* --------------------------------------------------------------------------
   Related guides
   -------------------------------------------------------------------------- */
.related { padding: 56px 0; background: var(--ink); }
.related h2 { margin-top: 0; }
.related .card a { text-decoration: none; color: var(--ink); display: block; }
.related .card a h3 { color: var(--ink); }
.related .card h3 { margin-bottom: 6px; }
.related .card p { margin: 0; font-size: 0.95rem; color: var(--ink-3); }
.related .card .arrow-link { margin-top: 14px; color: var(--ink); border-color: var(--ink); font-size: 0.95rem; }

/* Video placeholder cards (Scaffold Disaster Videos) */
.video-ph { position: relative; aspect-ratio: 16 / 9; background: var(--ink-2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; border: 1px dashed var(--grey-dark); }
.video-ph .play {
  width: 64px; height: 64px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.video-ph .play::after { content: ""; border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent var(--ink); margin-left: 4px; }
.video-card h3 { margin-top: 14px; }
.video-card p { font-size: 0.95rem; margin: 0; }
