/* ============================================================
   RED E CHARGE — custom site design system
   Ported from the locations subdomain: compact, clean, direct.
   ============================================================ */

:root {
  --navy: #141414;
  --ink: #111;
  /* button theme — editable from the admin (site.json > theme) */
  --accent: #ff0000;
  --btn-bg: #ff0000;
  --btn-text: #ffffff;
  --btn-border: #ff0000;
  --btn-hover: #d10000;
  --text: #555;
  --muted: #888;
  --line: #f0f0f0;
  --card: #f9f9f9;
  --maxw: 1100px;
  --font: 'Halyard Display', system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Self-host Halyard: drop the font file in /assets and uncomment.
@font-face {
  font-family: 'Halyard Display';
  src: url('/assets/halyard.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--navy); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
a { color: var(--navy); text-decoration: none; }

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

/* ---- NAV ---- */
.nav {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 50;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--navy);
  padding: 4px 2px; border-bottom: 2px solid transparent; transition: border-color .12s;
}
.nav-links a:hover { border-bottom-color: var(--accent); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--btn-bg); color: var(--btn-text);
  border: 2px solid var(--btn-border); border-radius: 8px;
  padding: 12px 26px; font-size: 14px; font-weight: 700; font-family: var(--font);
  cursor: pointer; transition: background-color .15s ease;
}
.btn:hover { background: var(--btn-hover); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: #f5f5f5; }

/* ---- SECTIONS ---- */
section { padding: 64px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }

/* HERO */
.hero h1 { font-size: 44px; letter-spacing: -1px; margin-bottom: 18px; max-width: 760px; }
.hero p { font-size: 18px; max-width: 560px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero img { width: 100%; border-radius: 16px; margin-top: 36px; }
@media (max-width: 760px) { .hero h1 { font-size: 32px; } }

/* TEXT */
.text h2 { font-size: 28px; margin-bottom: 14px; }
.text p { font-size: 16px; max-width: 720px; }

/* TEXT + IMAGE */
.text-image { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.text-image.right .ti-copy { order: 2; }
.text-image h2 { font-size: 28px; margin-bottom: 14px; }
.text-image img { width: 100%; border-radius: 16px; }
@media (max-width: 760px) { .text-image { grid-template-columns: 1fr; gap: 28px; } .text-image.right .ti-copy { order: 0; } }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border-radius: 12px; padding: 28px 16px; text-align: center; }
.stat-value { font-size: 30px; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* CARDS */
.cards h2 { font-size: 28px; margin-bottom: 28px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-box { background: var(--card); border: 1px solid #ececec; border-radius: 16px; padding: 24px; }
.card-box h3 { font-size: 16px; margin-bottom: 8px; }
.card-box p { font-size: 14px; color: var(--text); }
@media (max-width: 760px) { .cards-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta { text-align: center; }
.cta h2 { font-size: 30px; margin-bottom: 12px; }
.cta p { font-size: 16px; margin-bottom: 24px; }

/* ---- FOOTER ---- */
.footer { background: var(--card); border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--navy); }

/* ---- LEAD FORM (site evaluation) ---- */
.lead-form { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.lead-form .eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.lead-form h1 { font-size: 38px; letter-spacing: -1px; margin-bottom: 16px; }
.lead-form .lead { font-size: 17px; }
.form-card { background: var(--card); border: 1px solid #ececec; border-radius: 16px; padding: 28px; }
.form-card h2 { font-size: 20px; margin-bottom: 10px; }
.form-card > p { font-size: 14px; margin-bottom: 18px; }
.form-card label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 6px; }
.form-card input { width: 100%; padding: 12px 14px; border: 1px solid #d8d8d8; border-radius: 8px; font-family: var(--font); font-size: 15px; margin-bottom: 14px; }
.form-card .fineprint { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
@media (max-width: 760px) { .lead-form { grid-template-columns: 1fr; gap: 28px; } .lead-form h1 { font-size: 30px; } }

/* ============================================================
   HEADER — Tesla-style dropdown
   ============================================================ */
.hdr { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.hdr-inner { max-width: 1240px; margin: 0 auto; height: 64px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.hdr-logo { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.hdr-nav { display: flex; gap: 4px; }
.hdr-item { position: relative; }
.hdr-link { background: none; border: 0; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--navy); padding: 9px 14px; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; }
.hdr-item:hover .hdr-link { background: #f4f4f4; }
.hdr-panel { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 260px; background: #fff; border-radius: 16px; box-shadow: 0 14px 44px rgba(0,0,0,0.13); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; }
.hdr-item:hover .hdr-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hdr-panel::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.hdr-panel-inner a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--navy); }
.hdr-panel-inner a:hover { background: #f4f4f4; }
.hdr-cta { display: flex; align-items: center; gap: 14px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.hdr-burger { display: none; background: none; border: 0; font-size: 22px; color: var(--navy); cursor: pointer; }
.hdr-mobile { display: none; }
@media (max-width: 920px) {
  .hdr-nav { display: none; }
  .hdr-cta .btn-sm { display: none; }
  .hdr-burger { display: block; }
  .hdr-mobile { display: none; padding: 12px 24px 24px; border-top: 1px solid var(--line); }
  body.m-open .hdr-mobile { display: block; }
  .m-group { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .m-group-title { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 8px; }
  .m-group a { display: block; padding: 8px 0; font-size: 15px; font-weight: 500; color: var(--navy); }
  .hdr-mobile .btn-sm { display: inline-flex; margin-top: 16px; }
}

/* ============================================================
   FOOTER — full
   ============================================================ */
.ft { background: var(--navy); color: #d2d2d2; }
.ft-top { max-width: 1240px; margin: 0 auto; padding: 56px 24px 36px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.ft-logo { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ft-brand p { font-size: 14px; color: #9b9b9b; max-width: 320px; margin-bottom: 18px; line-height: 1.6; }
.ft-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.ft-contact a, .ft-contact span { color: #9b9b9b; }
.ft-contact a:hover { color: #fff; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ft-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: #fff; margin-bottom: 14px; }
.ft-col a { display: block; font-size: 13px; color: #9b9b9b; padding: 5px 0; }
.ft-col a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.12); max-width: 1240px; margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 12px; color: #7c7c7c; }
.ft-social { display: flex; gap: 16px; }
.ft-social a, .ft-legal a { color: #7c7c7c; }
.ft-social a:hover, .ft-legal a:hover { color: #fff; }
.ft-legal { display: flex; gap: 16px; }
@media (max-width: 760px) { .ft-top { grid-template-columns: 1fr; gap: 32px; } .ft-cols { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MARQUEE — auto-scroll
   ============================================================ */
.marquee-section { padding: 52px 0; border-bottom: 1px solid var(--line); }
.marquee-title { font-size: 22px; text-align: center; margin-bottom: 28px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: rede-scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-chip { background: var(--card); border: 1px solid #ececec; border-radius: 50px; padding: 13px 26px; font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; }
@keyframes rede-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-head { padding: 56px 0 24px; border-bottom: 0; }
.blog-head h1 { font-size: 40px; letter-spacing: -1px; margin-bottom: 12px; }
.blog-head p { font-size: 17px; max-width: 640px; }
.blog-list { padding: 24px 0 72px; border-bottom: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: block; border: 1px solid #ececec; border-radius: 16px; overflow: hidden; background: #fff; transition: box-shadow .15s ease, transform .15s ease; }
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bc-img { height: 168px; background-size: cover; background-position: center; background-color: #ececec; }
.bc-img-ph { background: linear-gradient(135deg, #f2f2f2, #e6e6e6); }
.bc-body { padding: 20px; }
.bc-date { font-size: 12px; color: var(--muted); }
.bc-body h3 { font-size: 16px; line-height: 1.3; margin: 6px 0 10px; }
.bc-body p { font-size: 14px; color: var(--text); margin-bottom: 12px; }
.bc-more { font-size: 13px; font-weight: 700; color: var(--accent); }
@media (max-width: 920px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* image placeholders (show where pictures go) */
.ti-ph, .hero-ph { display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg,#f4f4f4,#f4f4f4 12px,#eeeeee 12px,#eeeeee 24px); border: 1px dashed #cccccc; border-radius: 16px; color: #9b9b9b; font-size: 13px; font-weight: 600; letter-spacing: .3px; }
.ti-ph { min-height: 260px; }
.hero-ph { min-height: 320px; margin-top: 36px; }

/* ============================================================
   HERO SLIDER — Tesla-style auto-rotate
   ============================================================ */
.hero-slider { position: relative; height: 580px; overflow: hidden; }
.hs-track { height: 100%; }
.hs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; background-size: cover; background-position: center; display: flex; align-items: center; }
.hs-slide.active { opacity: 1; }
.hs-slide[data-noimg] { background: linear-gradient(120deg, #141414 0%, #2a2a2a 100%); }
.hs-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)); }
.hs-content { position: relative; width: 100%; color: #fff; }
.hs-content h1 { color: #fff; font-size: 46px; letter-spacing: -1px; max-width: 720px; margin-bottom: 16px; }
.hs-content p { font-size: 19px; max-width: 560px; margin-bottom: 26px; color: #f2f2f2; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: #f0f0f0; }
.hs-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; gap: 10px; justify-content: center; z-index: 3; }
.hs-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; }
.hs-dot.active { background: #fff; }
@media (max-width: 760px) { .hero-slider { height: 480px; } .hs-content h1 { font-size: 32px; } }

/* ============================================================
   TESTIMONIALS + LOGOS
   ============================================================ */
.tmonials { padding: 64px 0; border-bottom: 1px solid var(--line); }
.tmonials h2 { font-size: 28px; }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.tm-card { background: var(--card); border: 1px solid #ececec; border-radius: 16px; padding: 24px; }
.tm-card blockquote { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
.tm-card figcaption { font-size: 13px; font-weight: 700; color: var(--navy); }
@media (max-width: 760px) { .tm-grid { grid-template-columns: 1fr; } }
.logos { padding: 48px 0; border-bottom: 1px solid var(--line); text-align: center; }
.logos h2 { font-size: 22px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 16px; }
.logo-chip { background: #fff; border: 1px solid #e2e2e2; border-radius: 10px; padding: 14px 28px; font-weight: 700; color: var(--navy); font-size: 15px; }
.logos-cap { font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ============================================================
   YELLOW ACCENT — secondary on every page (red stays primary)
   ============================================================ */
:root { --yellow: #FFF200; }
.hdr { border-bottom: 3px solid var(--yellow); }
.hs-content h1::after, .hero h1::after, .lead-form h1::after {
  content: ""; display: block; width: 64px; height: 4px; background: var(--yellow); margin-top: 16px; border-radius: 2px;
}
.cards h2::after, .text h2::after, .tmonials h2::after, .logos h2::after,
.marquee-title::after, .cta h2::after, .blog-head h1::after {
  content: ""; display: block; width: 46px; height: 3px; background: var(--yellow); margin-top: 12px; border-radius: 2px;
}
.cta h2::after, .marquee-title::after, .logos h2::after { margin-left: auto; margin-right: auto; }
.stat-value { border-bottom: 3px solid var(--yellow); display: inline-block; padding-bottom: 4px; }

/* ---- MAP EMBED ---- */
.map-section { padding: 48px 0 0; border-bottom: 1px solid var(--line); }
.map-head { margin-bottom: 24px; }
.map-head h2 { font-size: 28px; }
.map-head p { font-size: 16px; color: var(--text); margin-top: 8px; }
.map-embed { width: 100%; height: 640px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 760px) { .map-embed { height: 520px; } }

/* ---- FAQ ---- */
.faq { padding: 64px 0; border-bottom: 1px solid var(--line); }
.faq h2 { font-size: 28px; margin-bottom: 20px; }
.faq-item { border: 1px solid #ececec; border-radius: 12px; margin-bottom: 10px; background: #fff; }
.faq-item summary { padding: 16px 20px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 15px; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 18px; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--text); line-height: 1.65; }

/* ============================================================
   VISUAL RICHNESS PASS  (red / yellow / black / grey / white)
   ============================================================ */

/* Branded image placeholders: black with red diamond + glow */
.ti-ph, .hero-ph {
  border: 0; color: rgba(255,255,255,0.5); overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,0,0,0.40), transparent 46%),
    radial-gradient(circle at 25% 82%, rgba(255,0,0,0.20), transparent 42%),
    #0c0c0c;
}
.ti-ph::after, .hero-ph::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 78px; height: 78px;
  background: #ff0000; transform: translate(-50%,-90%) rotate(45deg); opacity: .9;
  box-shadow: 0 92px 0 -6px rgba(255,0,0,.55);
}

/* Hero (non-slider): subtle branded glow instead of flat white */
.hero { background: radial-gradient(circle at 92% 0%, rgba(255,0,0,0.06), transparent 38%); }

/* Hero slider: deeper black + red glow */
.hs-slide[data-noimg] { background: radial-gradient(circle at 75% 25%, rgba(255,0,0,0.30), transparent 50%), linear-gradient(120deg, #0b0b0b, #1c0606); }

/* STATS as a black band for rhythm */
.stats { background: #0d0d0d; border-bottom: 0; padding: 56px 0; }
.stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); }
.stat-value { color: #fff; }
.stat-label { color: #aaa; }

/* CTA as a black band */
.cta { background: #0d0d0d; }
.cta h2 { color: #fff; }
.cta p { color: #cccccc; }

/* Cards: red top accent + hover lift */
.card-box { position: relative; transition: transform .15s ease, box-shadow .15s ease; overflow: hidden; }
.card-box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.card-box:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.card-box:hover::before { transform: scaleX(1); }

/* Testimonials: subtle quote mark */
.tm-card { position: relative; }
.tm-card blockquote::before { content: "\201C"; color: var(--accent); font-size: 40px; line-height: 0; vertical-align: -18px; margin-right: 4px; font-family: Georgia, serif; }

/* Logos: lift on hover */
.logo-chip { transition: transform .15s ease; }
.logo-chip:hover { transform: translateY(-2px); }

/* Bigger, bolder hero type */
.hero h1 { font-size: 50px; }
.hs-content h1 { font-size: 52px; }
@media (max-width: 760px) { .hero h1, .hs-content h1 { font-size: 32px; } }

/* ---- BLOG ARTICLE ---- */
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article { padding: 48px 0 80px; }
.article .back { font-size: 13px; font-weight: 700; color: var(--accent); }
.art-date { font-size: 13px; color: var(--muted); margin: 22px 0 8px; }
.article h1 { font-size: 38px; letter-spacing: -1px; line-height: 1.15; margin-bottom: 22px; }
.article h1::after { content: ""; display: block; width: 60px; height: 4px; background: var(--yellow); margin-top: 16px; border-radius: 2px; }
.art-hero { width: 100%; height: 320px; border-radius: 16px; object-fit: cover; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; }
.article p { font-size: 17px; line-height: 1.8; color: #333; margin-bottom: 18px; }
.art-src a { font-size: 14px; color: var(--accent); font-weight: 700; }

/* ============================================================
   VISUAL RICHNESS
   ============================================================ */
/* alternating section rhythm */
main > section:nth-of-type(even) { background: #fafafa; }
main > section.cta { background: #141414; }
main > section.cta h2 { color: #fff; }
main > section.cta p { color: #d2d2d2; }
main > section.tmonials { background: #141414; }
main > section.tmonials h2 { color: #fff; }
main > section.tmonials .tm-card { background: #1f1f1f; border-color: #2a2a2a; }
main > section.tmonials blockquote { color: #e2e2e2; }
main > section.tmonials figcaption { color: #fff; }

/* card hover lift + red top accent */
.card-box { transition: box-shadow .15s ease, transform .15s ease, border-color .15s; position: relative; overflow: hidden; }
.card-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.card-box:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card-box:hover::before { transform: scaleX(1); }

/* hero image as a banner under the copy */
.hero img { box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.hero .hero-ph { box-shadow: none; }

/* decorative red diamond brand accent (Red E motif) */
.stats { position: relative; }
.stats::after { content: ""; position: absolute; right: 24px; top: 50%; width: 16px; height: 16px; background: var(--accent); transform: translateY(-50%) rotate(45deg); opacity: .9; }
@media (max-width: 760px) { .stats::after { display: none; } }

/* stat tiles richer */
.stat { transition: transform .15s ease; }
.stat:hover { transform: translateY(-3px); }

/* blog post article layout */
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.post { padding: 48px 0 72px; }
.post-back { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.post-date { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.post h1 { font-size: 36px; letter-spacing: -1px; line-height: 1.15; margin-bottom: 22px; }
.post h1::after { content: ""; display: block; width: 56px; height: 4px; background: var(--yellow); margin-top: 16px; border-radius: 2px; }
.post-hero { width: 100%; border-radius: 16px; margin-bottom: 28px; box-shadow: 0 18px 44px rgba(0,0,0,0.12); }
.post-body p { font-size: 17px; line-height: 1.8; color: #333; margin-bottom: 18px; }
.post-source a { font-weight: 700; color: var(--accent); }

/* blog thumbnails fill nicely */
.blog-card .bc-img { background-color: #141414; }
