/* ─────────────────────────────────────────────────────────
   Right Turn Removals Blog styles
   Layers on top of /assets/styles.css (reuses brand tokens,
   header.site, footer.site, .btn, .wrap, .callbar).
   ───────────────────────────────────────────────────────── */

/* ── Layout ─────────────────────────────── */
.wrap.narrow { max-width: 760px; }
.blog-main { padding: 40px 0 64px; }

/* ── Breadcrumb ─────────────────────────── */
.crumb { margin: 6px 0 26px; }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; font-size: 13px; color: var(--mute); }
.crumb li { display: flex; align-items: center; gap: 8px; }
.crumb li + li::before { content: '›'; color: var(--hairline); }
.crumb a { color: var(--mute); text-decoration: none; }
.crumb a:hover { color: var(--red); }

/* ── Post header ────────────────────────── */
.post-head { margin-bottom: 26px; }
.post-head .eyebrow { margin-bottom: 14px; }
.post-head h1 { font-size: clamp(36px, 6vw, 62px); line-height: 0.94; margin: 0 0 18px; }
.post-head h1 em { font-style: italic; color: var(--red); }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--ff-body); font-weight: 700; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--mute); }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── Quick answer box (the AI-quotable block) ─────── */
.qa { background: var(--ink); color: var(--on-ink); border-radius: 16px; padding: 24px 26px; margin: 30px 0; border-left: 5px solid var(--gold); }
.qa .label { display: inline-block; font-family: var(--ff-body); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.qa p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--on-ink); }
.qa strong { color: #fff; }

/* ── Article prose ──────────────────────── */
.prose { font-size: 17.5px; line-height: 1.72; color: var(--body); }
.prose > p { margin: 0 0 20px; }
.prose h2 { font-size: clamp(28px, 3.8vw, 40px); line-height: 1; margin: 46px 0 8px; color: var(--ink); }
.prose h2 em { font-style: italic; color: var(--red); }
.prose h3 { font-family: var(--ff-body); font-weight: 800; font-size: 20px; line-height: 1.25; letter-spacing: 0; margin: 30px 0 8px; color: var(--ink); }
.prose .key { margin: 0 0 18px; padding: 16px 20px; background: var(--paper-2); border-radius: 12px; border-left: 4px solid var(--red); font-size: 17px; line-height: 1.55; color: var(--ink); }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--red-d); }
.prose strong { color: var(--ink); font-weight: 800; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--red); }
.prose .note { font-size: 15px; color: var(--mute); border-top: 1px solid var(--hairline); padding-top: 16px; margin-top: 30px; }

/* Simple price / info table inside prose */
.prose .tbl { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 16px; }
.prose .tbl th, .prose .tbl td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--hairline); }
.prose .tbl thead th { font-family: var(--ff-body); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); background: var(--paper-2); }
.prose .tbl tbody tr:last-child td { border-bottom: 0; }
.prose .tbl .price { font-weight: 800; color: var(--red); white-space: nowrap; }
.tbl-scroll { overflow-x: auto; }

/* ── FAQ ────────────────────────────────── */
.faq { margin: 54px 0 10px; }
.faq h2 { font-size: clamp(28px, 3.8vw, 40px); margin: 0 0 18px; }
.faq details { border: 1px solid var(--hairline); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; background: var(--paper); }
.faq details[open] { border-color: var(--red); background: #fff; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--ff-body); font-weight: 800; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--ff-display); font-size: 26px; color: var(--red); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.65; color: var(--body); }

/* ── CTA ────────────────────────────────── */
.blog-cta { margin: 54px 0 0; background: var(--ink); color: var(--on-ink); border-radius: 18px; padding: 40px 34px; text-align: center; }
.blog-cta .label { display: inline-block; font-family: var(--ff-body); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); margin: 0 0 12px; }
.blog-cta h2 em { font-style: italic; color: var(--gold); }
.blog-cta p { max-width: 52ch; margin: 0 auto 22px; color: var(--mute-ink); font-size: 16.5px; line-height: 1.6; }
.blog-cta .cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.blog-cta .btn-ghost { color: var(--on-ink); border-color: rgba(245,241,246,0.38); }
.blog-cta .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── Related ────────────────────────────── */
.related { margin: 54px 0 0; }
.related h2 { font-size: 26px; margin: 0 0 18px; }
.rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rel-card { display: flex; flex-direction: column; gap: 6px; padding: 20px; border: 1px solid var(--hairline); border-radius: 14px; background: var(--paper); text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.rel-card:hover { border-color: var(--red); transform: translateY(-2px); }
.rel-card .label { font-family: var(--ff-body); font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.rel-card strong { font-family: var(--ff-body); font-weight: 800; font-size: 17px; color: var(--ink); }
.rel-card span:last-child { font-size: 14.5px; color: var(--mute); line-height: 1.5; }

/* ── Blog index ─────────────────────────── */
.blog-hero { margin-bottom: 8px; }
.blog-hero h1 { font-size: clamp(40px, 7vw, 74px); margin: 10px 0 14px; }
.blog-hero h1 .y { color: var(--red); }
.blog-hero p { font-size: 18px; color: var(--body); max-width: 60ch; }
.post-list { display: grid; gap: 18px; margin: 34px 0 0; }
.post-card { display: block; padding: 26px 28px; border: 1px solid var(--hairline); border-radius: 16px; background: var(--paper); text-decoration: none; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.post-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 24px 44px -34px rgba(19,10,18,0.4); }
.post-card .label { font-family: var(--ff-body); font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.post-card h2 { font-family: var(--ff-body); font-weight: 800; font-size: clamp(21px, 3vw, 26px); line-height: 1.2; letter-spacing: 0; color: var(--ink); margin: 8px 0 8px; }
.post-card p { margin: 0; color: var(--mute); font-size: 15.5px; line-height: 1.55; }

@media (max-width: 640px) {
  .rel-grid { grid-template-columns: 1fr; }
  .qa, .blog-cta { padding-left: 22px; padding-right: 22px; }
}
