/* ============================================================
   Blog Post B — igual-child palette
   Ported from adag-new-theme-v1/blog-b.css.
   Color changes from adag original:
     --accent: rgb(30,91,216) blue   → #b8967e igual brown
     --accent-dk                     → #a07060 darker brown
     --accent-light                  → #f2ede8 warm light bg
     --accent-border                 → #e0d5ca warm border
     --navy: rgb(15,23,42) dark      → #09172e igual navy (kept dark)
     --navy-2: rgb(11,46,114) blue   → #1f2f4a mid navy
     --paper, --paper-tint           → warm off-whites
     --line                          → warm border
   Green for critical-docs bullets is intentionally preserved as-is
   (it is semantic — success/checkmark — not a brand colour).
   ============================================================ */

/* ── Colour tokens ───────────────────────────────────────── */
:root {
  --accent:          #b8967e;   /* igual primary brown */
  --accent-dk:       #a07060;   /* darker brown hover  */
  --accent-light:    #f2ede8;   /* warm light bg       */
  --accent-border:   #e0d5ca;   /* warm border         */

  --navy:            #09172e;   /* igual dark navy     */
  --navy-2:          #1f2f4a;   /* mid navy            */

  --paper:           #faf8f6;   /* warm off-white      */
  --paper-tint:      #f2ede8;   /* warm tint           */
  --white:           #ffffff;

  --line:            #e0d5ca;   /* warm border         */

  --ink:             #262626;
  --ink-2:           #4a4a4a;
  --ink-3:           #797979;

  /* Green — critical-docs checkmarks ONLY — kept as-is */
  --green-docs:       rgb(15, 138, 95);
  --green-docs-dk:    rgb(10, 100, 68);
  --green-docs-light: rgba(15, 138, 95, 0.08);

  --font-sans:   'DM Sans', 'Marcellus', system-ui, -apple-system, sans-serif;

  --gutter-mobile: 20px;
  --gutter-tablet: 32px;
  --gutter-desk:   56px;

  --reading-max:  900px;
  --layout-max:   1100px;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow { margin: 0 0 10px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; display: inline-block; }
.eyebrow--accent { color: var(--accent); }
.eyebrow--gold   { color: var(--accent); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-block; font-family: inherit; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; padding: 14px 22px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all .3s; text-align: center; }
.btn--uppercase    { text-transform: uppercase; }
.btn--accent       { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dk); }
.btn--block        { display: block; width: 100%; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  width: 100%;
  background: var(--white);
  border-top: 3px solid var(--accent);   /* brown accent line — separates header from breadcrumb */
  border-bottom: 1px solid var(--line);
  padding: 8px 0;                        /* tighter than before (was 13px) */
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 80px;                      /* clears fixed 80px navbar */
}
@media (max-width: 767px) {
  .breadcrumb { margin-top: 70px; }
}

/* ── No divider on .post itself — breadcrumb border-top handles separation */
.post {
  border-top: none;
  margin-top: 0;
}
.breadcrumb__link       { color: var(--ink-2); text-decoration: none; }
.breadcrumb__link:hover { color: var(--accent); }
.breadcrumb__sep        { margin: 0 8px; color: #B7BCC6; font-size: 11px; }
.breadcrumb__current    { color: var(--ink); font-weight: 600; }

/* ── Article wrapper ─────────────────────────────────────── */
.post { background: var(--paper); }

/* ── Post header ─────────────────────────────────────────── */
.post__header { padding: 48px 0 32px; }
.post__category { margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; font-family: var(--font-sans); }
.post__category-rule { width: 28px; height: 1px; background: currentColor; display: inline-block; }
.post__category a    { color: inherit; text-decoration: none; }
.post__title   { margin: 0; font-size: 36px; line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.post__excerpt { margin: 20px 0 0; font-size: 17px; line-height: 1.55; color: var(--ink-2); }

/* ── Byline (.ba-byline) ─────────────────────────────────── */
.ba-byline { background: var(--accent-light); border: 1px solid var(--line); border-radius: 4px; padding: 20px 24px; margin-top: 24px; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; gap: 16px; }
.ba-byline__people  { display: flex; flex-direction: column; gap: 18px; }
.ba-byline__person  { display: flex; gap: 12px; align-items: flex-start; }
.ba-byline__badge   { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; color: var(--white); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; border-radius: 8px; /* bg set by PHP ssd_badge_color() inline style */ }
.ba-byline__meta    { line-height: 1.3; }
.ba-byline__label   { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-2); font-weight: 700; }
.ba-byline__label--legal { color: var(--accent); }
.ba-byline__name    { display: block; margin: 2px 0 0; font-size: 15px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.ba-byline__name:hover { border-bottom-color: var(--accent); color: var(--accent); }
.ba-byline__title   { margin: 2px 0 0; font-size: 12.5px; color: var(--ink-2); }
.ba-byline__bar     { display: inline-block; margin-left: 6px; font-size: 11px; color: var(--ink-3); font-style: italic; }
.ba-byline__dates   { font-size: 12.5px; color: var(--ink-2); }
.ba-byline__published { margin: 0 0 4px; }
.ba-byline__updated   { margin: 0 0 4px; color: var(--ink); }
.ba-byline__readtime  { margin: 0; }
.ba-byline__badge-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@media (min-width: 768px) {
  .post__header { padding: 56px 0 32px; } .post__title { font-size: 44px; }
  .ba-byline         { flex-direction: column; gap: 16px; }
  .ba-byline__people { flex-direction: row; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
  .ba-byline__dates  { display: flex; flex-direction: row; gap: 20px; align-items: center; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line); }
  .ba-byline__published { margin: 0; } .ba-byline__updated { margin: 0; } .ba-byline__readtime { margin: 0; }
}
@media (min-width: 1280px) { .post__header { padding: 64px 0 40px; } .post__title { font-size: 52px; letter-spacing: -0.035em; } .post__excerpt { font-size: 19px; } }

/* ── Featured image ──────────────────────────────────────── */
.post__featured { margin: 0; padding: 0 0 32px; }
.post__featured-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.post__featured-caption { margin-top: 10px; padding-left: 12px; border-left: 2px solid var(--accent); font-size: 12.5px; color: var(--ink-2); font-style: italic; }
@media (min-width: 768px)  { .post__featured { padding: 0 0 40px; } }
@media (min-width: 1280px) { .post__featured { padding: 0 0 40px; } }

/* ── Key Takeaways ───────────────────────────────────────── */
section.ssd-key-facts {
  background: var(--accent-light) !important;
  border: none !important; border-radius: 5px !important;
  padding: 28px 26px 28px 30px; max-width: 100%; margin: 0 0 32px; position: relative;
}
section.ssd-key-facts::before { display: none !important; }
section.ssd-key-facts h2 { margin: 0 0 20px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; color: var(--navy); }
section.ssd-key-facts h2::before { content: '💡'; display: inline-block; margin-right: 8px; font-size: 14px; }
section.ssd-key-facts ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: key-facts-counter; }
section.ssd-key-facts ul li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--ink); line-height: 1.6; counter-increment: key-facts-counter; }
section.ssd-key-facts ul li::before { content: counter(key-facts-counter); flex-shrink: 0; width: 26px; height: 26px; background: var(--accent); color: #ffffff; display: grid; place-items: center; font-size: 12px; font-weight: 800; border-radius: 50%; margin-top: 1px; }
@media (min-width: 768px) { section.ssd-key-facts { padding: 32px 40px 32px 36px; } section.ssd-key-facts ul li { font-size: 15px; } }
@media (min-width: 1280px) { section.ssd-key-facts { margin-bottom: 40px; } }

/* ── Table of Contents ───────────────────────────────────── */
.ssd-toc { background: #f6f3ef !important; border: 1px solid #f6f3ef !important; border-radius: 5px !important; padding: 22px 24px; max-width: 100%; margin: 0 0 32px; position: relative; }
.ssd-toc::before { display: none !important; }
.ssd-toc__eyebrow { margin: 0 0 16px; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
.ssd-toc__list, .ssd-toc ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.ssd-toc__item { display: flex; gap: 6px; align-items: baseline; }
.ssd-toc__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 22px;
  background: #d9ccc0 !important; color: #6b4c38 !important;
  border-radius: 4px !important; font-size: 11px !important; font-weight: 700 !important;
  font-family: inherit !important; flex-shrink: 0;
}
.ssd-toc__link { font-size: 14.5px; color: var(--navy-2); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; line-height: 1.45; }
.ssd-toc__link:hover { border-bottom-color: var(--accent); color: var(--accent); }
@media (min-width: 768px)  { .ssd-toc { padding: 24px 30px; margin-bottom: 40px; } }
@media (min-width: 1280px) { .ssd-toc { margin-bottom: 48px; } }

/* ── Pillar CTA blog-a variant ───────────────────────────── */
.ssd-pillar-cta { padding: 0 0 40px; }
.ssd-pillar-cta__inner { background: var(--navy); color: var(--white); padding: 28px 26px 24px; max-width: 100%; margin: 0; display: flex; flex-direction: column; gap: 0; }
.ssd-pillar-cta__copy { width: 100%; }
.ssd-pillar-cta__eyebrow { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; line-height: 1.4; }
.ssd-pillar-cta__lede   { margin: 0 0 20px; font-size: 15px; color: #D8CCBC; line-height: 1.65; width: 100%; }
.ssd-pillar-cta__btn-row { display: flex; justify-content: flex-end; width: 100%; margin-top: 4px; }
.ssd-pillar-cta__btn    { display: inline-block; background: var(--accent); color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; padding: 13px 28px; white-space: nowrap; transition: all .3s; }
.ssd-pillar-cta__btn:hover { background: var(--accent-dk); color: var(--white); }
@media (min-width: 768px) { .ssd-pillar-cta { padding: 0 0 48px; } .ssd-pillar-cta__inner { padding: 32px 36px 28px; } }

/* ── Pillar CTA blog-b variant (.ssd-pillar-cta-b) ──────── */
.ssd-pillar-cta-b { padding: 0 0 40px; }
.ssd-pillar-cta-b__inner { background: var(--navy); color: var(--white); padding: 28px 26px 24px; max-width: 100%; margin: 0; display: flex; flex-direction: column; gap: 0; border-radius: 5px; }
.ssd-pillar-cta-b__copy  { width: 100%; }
.ssd-pillar-cta-b__eyebrow { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; line-height: 1.4; }
.ssd-pillar-cta-b__lede  { margin: 0 0 20px; font-size: 15px; color: #D8CCBC; line-height: 1.65; width: 100%; }
.ssd-pillar-cta-b__btn-row { display: flex; justify-content: flex-end; width: 100%; }
.ssd-pillar-cta-b__btn   { display: inline-block; background: var(--accent); color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; padding: 13px 28px; white-space: nowrap; transition: all .3s; border-radius: 0; }
.ssd-pillar-cta-b__btn:hover { background: var(--accent-dk); color: var(--white); }
@media (min-width: 768px) { .ssd-pillar-cta-b { padding: 0 0 48px; } .ssd-pillar-cta-b__inner { padding: 32px 36px 28px; } .ssd-pillar-cta-b__lede { font-size: 16px; margin-bottom: 22px; } }
@media (min-width: 1280px) { .ssd-pillar-cta-b { padding: 0 0 48px; } }

/* ── Body ---------- */
.post__body { background: var(--white); border-top: 1px solid var(--line); padding: 48px 0; max-width: 100%; margin: 0; }
.rich-text { max-width: 100%; margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.rich-text > :first-child { margin-top: 0; }
.rich-text > p:first-child { font-size: 18px; color: var(--ink); margin-bottom: 24px; }
.rich-text h2 { margin: 36px 0 14px; font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1.2; padding-top: 12px; border-top: 1px solid var(--line); }
.rich-text h2:first-of-type { border-top: none; padding-top: 0; }
.rich-text h3 { margin: 24px 0 10px; font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.rich-text p  { margin: 14px 0; }
.rich-text a  { color: var(--navy-2); border-bottom: 1px solid var(--line); text-decoration: none; }
.rich-text a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.rich-text ul, .rich-text ol { padding-left: 0; list-style: none; margin: 16px 0; }
.rich-text ul li, .rich-text ol li { position: relative; padding-left: 32px; margin: 10px 0; }
.rich-text ul li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; background: var(--navy); color: var(--white); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.rich-text ol { counter-reset: post-counter; }
.rich-text ol li { counter-increment: post-counter; }
.rich-text ol li::before { content: counter(post-counter); position: absolute; left: 0; top: 2px; width: 20px; height: 20px; background: var(--navy); color: var(--white); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.rich-text figure { margin: 32px 0; } .rich-text figure img { width: 100%; height: auto; border: 1px solid var(--line); }
.rich-text figcaption { margin-top: 10px; padding-left: 12px; border-left: 2px solid var(--accent); font-size: 13px; color: var(--ink-2); font-style: italic; }
.rich-text blockquote { margin: 24px 0; padding: 4px 20px; border-left: 4px solid var(--navy); font-style: italic; font-size: 17px; color: var(--ink); }
.rich-text table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 24px 0; }
.rich-text thead tr { background: var(--paper-tint); border-bottom: 2px solid var(--navy); }
.rich-text th, .rich-text td { padding: 10px 14px; text-align: left; color: var(--ink); }
.rich-text tbody tr { border-bottom: 1px solid var(--line); }
@media (min-width: 768px)  { .post__body { padding: 56px 0; } .rich-text h2 { font-size: 30px; } }
@media (min-width: 1280px) { .post__body { padding: 64px 0; } .rich-text h2 { font-size: 32px; letter-spacing: -0.035em; } .rich-text { font-size: 16.5px; } .rich-text > p:first-child { font-size: 19px; } }

/* ── Mid CTA ─────────────────────────────────────────────── */
.mid-cta { margin: 32px 0; padding: 22px 24px; border: 1px solid var(--line); background: var(--paper-tint); position: relative; }
.mid-cta__accent  { position: absolute; top: -1px; left: -1px; width: 4px; height: 60px; background: var(--accent); }
.mid-cta__eyebrow { margin: 0 0 6px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.mid-cta__row     { display: flex; flex-direction: column; gap: 14px; }
.mid-cta__copy    { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.55; flex: 1; }
.mid-cta__btn     { font-size: 12.5px; padding: 12px 18px; white-space: nowrap; align-self: flex-start; background: var(--accent); color: #ffffff !important; text-decoration: none; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: none; border-radius: 0; display: inline-block; transition: all .3s; }
.mid-cta__btn:hover, .mid-cta__btn:focus { background: var(--accent-dk); color: #ffffff !important; }
@media (min-width: 768px) { .mid-cta { padding: 24px 28px; } .mid-cta__row { flex-direction: row; align-items: center; gap: 24px; } .mid-cta__btn { align-self: auto; } }

/* ── Author bios ─────────────────────────────────────────── */
.bios { background: var(--accent-light); border-top: 1px solid var(--line); padding: 48px var(--gutter-mobile); }
.bios__head  { max-width: none; margin: 0 0 24px; }
.bios__title { margin: 0; font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.bios__grid  { max-width: none; margin: 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
.bio { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px 30px; display: flex; gap: 20px; }
.bio__photo { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; position: relative; display: grid; place-items: center; overflow: hidden; }
.bio__photo-img      { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bio__photo-initials { font-size: 22px; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: -0.025em; }
.bio__body  { flex: 1; }
.bio__role  { display: inline-block; background: var(--accent-light); color: var(--accent); border-radius: 4px; padding: 3px 8px; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; margin: 0 0 8px; }
.bio__name  { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: var(--ink); }
.bio__title { margin: 0 0 4px; font-size: 14px; font-weight: 600; color: var(--ink); }
.bio__bar, .bio__creds { font-size: 12px; color: var(--ink-2); margin: 0 0 10px; }
.bio__blurb { margin: 0 0 12px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.bio__link  { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.bio__link:hover { text-decoration: underline; }
.bios .eyebrow--accent { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.bios__title { color: var(--ink); font-size: 32px; font-weight: 800; }
@media (min-width: 768px)  { .bios { padding: 56px var(--gutter-tablet); } .bios__title { font-size: 28px; } }
@media (min-width: 1024px) { .bios__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1280px) { .bios { padding: 64px var(--gutter-desk); } }

/* ── FAQ section ─────────────────────────────────────────── */
.ssd-faq { background: #ffffff; padding: 40px 0 32px; max-width: 100%; margin: 0; }
.ssd-faq-eyebrow { margin: 0 0 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); text-align: center; }
.ssd-faq h2 { margin: 0 0 28px; font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1.2; text-align: center; }
.ssd-faq .accordion-item         { background: var(--accent-light); border: 1px solid var(--accent-border); border-radius: 5px !important; margin-bottom: 8px; overflow: hidden; }
.ssd-faq .accordion-item:first-of-type,
.ssd-faq .accordion-item:last-of-type { border-radius: 5px !important; }
.ssd-faq .accordion-button       { background: var(--accent-light); color: var(--ink); font-size: 16px; font-weight: 700; border-radius: 5px !important; padding: 20px 26px; box-shadow: none; }
.ssd-faq .accordion-button:not(.collapsed) { background: var(--accent-light); color: var(--ink); box-shadow: none; }
.ssd-faq .accordion-button::after { display: none !important; }
.ssd-faq .accordion-button::before { content: '+'; display: grid; place-items: center; width: 26px; height: 26px; min-width: 26px; background: var(--accent); color: #ffffff; border-radius: 50%; font-size: 18px; font-weight: 400; line-height: 1; margin-left: auto; order: 2; flex-shrink: 0; letter-spacing: -0.2px; }
.ssd-faq .accordion-button:not(.collapsed)::before { content: '−'; background: var(--accent-dk); }
.ssd-faq .accordion-body { background: var(--accent-light); color: var(--ink-2); font-size: 15px; line-height: 1.65; padding: 0 26px 20px; border-radius: 0 0 10px 10px; }
.ssd-faq .accordion-collapse { border: none; }
@media (min-width: 768px)  { .ssd-faq { padding: 56px 0; } .ssd-faq h2 { font-size: 28px; } .ssd-faq .accordion-button { font-size: 16.5px; } }
@media (min-width: 1280px) { .ssd-faq { padding: 64px 0; } .ssd-faq h2 { font-size: 30px; } }

/* ── Conversion CTA ──────────────────────────────────────── */
.conversion { background: var(--accent-light); color: var(--ink); padding: 56px 44px; }
.conversion__inner { background: #ffffff; border-radius: 8px; box-shadow: rgba(184,150,126,.2) 0px 40px 80px -40px; padding: 48px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1080px; margin: 0 auto; align-items: start; }
.conversion .eyebrow--gold { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; }
.conversion__title { color: var(--ink); font-size: 34px; font-weight: 700; letter-spacing: -0.7px; line-height: 1.15; margin-bottom: 16px; }
.conversion__lede  { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.conversion__phone { background: var(--paper-tint); border-radius: 10px; padding: 20px 22px; margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.conversion__phone-label { color: var(--ink-3); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }
.conversion__phone-num   { color: var(--ink); font-size: 22px; font-weight: 700; text-decoration: none; letter-spacing: -0.3px; }
.conversion .form__label { color: var(--ink); font-size: 12px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.conversion .form__req   { color: var(--accent); }
.conversion .form__input { background: #ffffff; border: 1px solid var(--accent-border); border-radius: 4px; padding: 13px 16px; font-size: 15px; color: var(--ink); width: 100%; height: 48px; }
.conversion .form__input--textarea { height: auto; min-height: 100px; }
.conversion .form__input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.conversion .form__submit { background: var(--accent); color: #ffffff; border-radius: 0; padding: 16px 22px; font-size: 15px; font-weight: 700; text-align: center; border: none; width: 100%; cursor: pointer; margin-top: 6px; transition: all .3s; }
.conversion .form__submit:hover { background: var(--accent-dk); }
.conversion .form__legal { color: var(--ink-3); font-size: 12px; line-height: 1.55; margin-top: 10px; text-align: center; }
@media (max-width: 767px) { .conversion__inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; } .conversion { padding: 48px 20px; } }

/* ── Related posts ───────────────────────────────────────── */
.ssd-related { background: #ffffff; padding: 64px var(--gutter-desk); }
.ssd-related__inner   { max-width: 1080px; margin: 0 auto; }
.ssd-related__eyebrow { margin: 0 0 6px; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); }
.ssd-related__heading { margin: 0 0 28px; font-size: 28px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); }
.ssd-related__grid    { display: grid; grid-template-columns: 1fr; gap: 16px; }
.ssd-related__card    { background: var(--accent-light); border: 1px solid var(--accent-border); border-radius: 4px; transition: all .3s; }
.ssd-related__card:hover { box-shadow: 0 4px 20px rgba(184,150,126,.15); }
.ssd-related__card-link { display: flex; flex-direction: column; padding: 24px 26px; height: 100%; text-decoration: none; color: inherit; gap: 12px; }
.ssd-related__cat     { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent); margin: 0; }
.ssd-related__title   { font-size: 17.5px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.3; color: var(--ink); margin: 0; flex: 1; }
.ssd-related__excerpt { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.ssd-related__footer  { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--accent-border); }
.ssd-related__time    { font-size: 13px; color: var(--ink-3); }
.ssd-related__cta     { font-size: 13px; font-weight: 700; color: var(--accent); }
.ssd-related__card:hover .ssd-related__cta { color: var(--accent-dk); }
@media (min-width: 576px) { .ssd-related__grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 768px)  { .ssd-related { padding: 56px var(--gutter-tablet); } }
@media (min-width: 1024px) { .ssd-related__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .ssd-related { padding: 64px var(--gutter-desk); } }

/* ── Critical Documentation — green bullets kept ─────────── */
.ssd-critical-docs { padding: 0 var(--gutter-mobile) 40px; }
.ssd-critical-docs__title { max-width: var(--reading-max); margin: 0 auto 20px; font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; border-bottom: 2px solid var(--line); padding-bottom: 10px; }
.ssd-critical-docs__list  { list-style: none; margin: 0 auto; padding: 0; max-width: var(--reading-max); display: flex; flex-direction: column; gap: 12px; }
.ssd-critical-docs__item  { position: relative; padding-left: 30px; font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.ssd-critical-docs__item::before { content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border: 2px solid var(--green-docs); border-radius: 2px; background: var(--white); }
.ssd-critical-docs__item::after  { content: ''; position: absolute; left: 4px; top: 5px; width: 5px; height: 9px; border-right: 2.5px solid var(--green-docs); border-bottom: 2.5px solid var(--green-docs); transform: rotate(45deg); }
@media (min-width: 768px)  { .ssd-critical-docs { padding: 0 var(--gutter-tablet) 48px; } .ssd-critical-docs__title { font-size: 26px; } }
@media (min-width: 1280px) { .ssd-critical-docs { padding: 0 var(--gutter-desk) 48px; } }

/* ── Legal disclaimer ────────────────────────────────────── */
.ssd-disclaimer { background: var(--white); padding: 32px var(--gutter-tablet) 24px; }
.ssd-disclaimer__inner { max-width: 1168px; margin: 0 auto; font-size: 13px; line-height: 1.7; color: var(--ink-2); }
.ssd-disclaimer__inner strong { color: var(--ink); font-weight: 700; }
@media (min-width: 768px)  { .ssd-disclaimer { padding: 16px var(--gutter-tablet); } }
@media (min-width: 1280px) { .ssd-disclaimer { padding: 16px var(--gutter-desk); } }

/* ── Sticky mobile CTA bar ───────────────────────────────── */
.ssd-sticky-cta { display: none !important; }

/* ── Full-width wrapper ──────────────────────────────────── */
.ssd-page-wrap { width: 100%; padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
@media (min-width: 1024px) { .ssd-page-wrap { padding-left: var(--gutter-tablet); padding-right: var(--gutter-tablet); } }
@media (min-width: 1280px) { .ssd-page-wrap { padding-left: var(--gutter-desk); padding-right: var(--gutter-desk); } }

/* ── Fix parent-theme overflow: hidden breaking position: sticky ─ */
.igual-body-inner { overflow: clip; }

/* ── Two-column post layout ──────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr; grid-template-areas: "main" "sidebar"; gap: 0; }
.post-layout__main    { grid-area: main; min-width: 0; }
.post-layout__sidebar { grid-area: sidebar; }
.post-layout__sidebar-inner { padding: 0 4px 0 0; }
@media (min-width: 1024px) {
  .post-layout { grid-template-columns: 65% 35%; grid-template-areas: "main sidebar"; gap: 0 32px; align-items: start; }
  .post-layout__sidebar { position: sticky; top: calc(var(--header-h, 80px) + 16px); align-self: start; padding-top: 16px; border-left: 1px solid var(--line); padding-left: 16px; padding-right: 8px; }
}
@media (min-width: 1280px) { .post-layout { gap: 0 48px; } .post-layout__sidebar { padding-top: 24px; padding-left: 20px; padding-right: 12px; } }
.post-layout__sidebar.toc-past-boundary { position: static !important; top: auto !important; }
@media (max-width: 1023px) { .post-layout__sidebar { display: none; } }
.post-layout__sidebar .ssd-toc { margin-bottom: 0; border: 1px solid var(--accent-border); padding: 20px 20px 20px 16px; position: relative; }
.post-layout__sidebar .ssd-toc a,
.post-layout__sidebar .ssd-toc__link { display: block; text-decoration: none; color: var(--navy-2); border-bottom: 1px solid var(--line); padding-bottom: 2px; line-height: 1.5; font-size: 13px; transition: all .3s; pointer-events: auto !important; position: relative; z-index: 3; }
.post-layout__sidebar .ssd-toc a:hover,
.post-layout__sidebar .ssd-toc__link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.post-layout__sidebar .ssd-toc__list,
.post-layout__sidebar .ssd-toc ol { grid-template-columns: 1fr !important; gap: 10px; }
@media (max-width: 1023px) { .post-layout__main .post__body { padding-left: 20px; padding-right: 20px; } }

.post_body_bg { background-color: #ffffff; padding-left: 24px; padding-right: 24px; }
@media (min-width: 768px)  { .post_body_bg { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1280px) { .post_body_bg { padding-left: 56px; padding-right: 56px; } }
.faq_body_bg { background-color: #ffffff; }

/* ============================================================
   CONTACT FORM 7 — style override
   Makes CF7 inputs/textarea/submit match .form__input look
   so the conversion CTA looks identical whether using CF7
   or the custom fallback form.
   ============================================================ */
.conversion .wpcf7 p                   { margin: 0; }
.conversion .wpcf7 .wpcf7-form         { display: flex; flex-direction: column; gap: 14px; }
.conversion .wpcf7 br                  { display: none; } /* CF7 adds <br> tags */

.conversion .wpcf7 input[type="text"],
.conversion .wpcf7 input[type="email"],
.conversion .wpcf7 input[type="tel"],
.conversion .wpcf7 textarea {
  background: #ffffff;
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  height: 48px;
  font-family: var(--font-sans);
  display: block;
}
.conversion .wpcf7 textarea            { height: 110px; min-height: 110px; max-height: 110px; resize: none; }

.conversion .wpcf7 input[type="text"]:focus,
.conversion .wpcf7 input[type="email"]:focus,
.conversion .wpcf7 input[type="tel"]:focus,
.conversion .wpcf7 textarea:focus      { outline: 2px solid var(--accent); border-color: var(--accent); }

.conversion .wpcf7 input[type="submit"],
.conversion .wpcf7 .wpcf7-submit {
  background: var(--accent);
  color: #ffffff !important;
  border-radius: 0;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: visible;
  text-decoration: none !important;   /* kill any inherited underline */
  -webkit-appearance: none;           /* reset browser default button styles */
  appearance: none;
  display: block;
  line-height: 1.4;
}
.conversion .wpcf7 input[type="submit"]:hover,
.conversion .wpcf7 .wpcf7-submit:hover { background: var(--accent-dk); }

/* CF7 validation messages */
.conversion .wpcf7 .wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.conversion .wpcf7 .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--accent-border);
}
.conversion .wpcf7 .wpcf7-mail-sent-ok  { background: #f0faf4; border-color: #27ae60; color: #1e6b41; }
.conversion .wpcf7 .wpcf7-mail-sent-ng,
.conversion .wpcf7 .wpcf7-aborted       { background: #fdf3f3; border-color: #c0392b; color: #c0392b; }

/* TOC indent classes removed — all items display flat */

.conversion .wpcf7 span.form__label,
.conversion .wpcf7 .wpcf7-form .form__label {
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  display: block;
  margin-bottom: 6px;
}