/* Shared styles for static, crawlable content pages (buyer's guide + area pages) */
.guide { max-width: 880px; margin: 0 auto; padding: 0 22px; }
.guide-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.guide-top .gt-brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-disp); font-size: 1.15rem; color: var(--brand); font-weight: 500; }
.guide-top .gt-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.guide-top nav { display: flex; gap: .5rem; align-items: center; }
.guide-hero { padding: 3.2rem 0 2.2rem; }
.guide-hero .eyebrow { margin-bottom: 1.1rem; }
.guide-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 300; line-height: 1.05; letter-spacing: -.02em; margin: 0 0 1.1rem; }
.guide-hero p.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 60ch; margin: 0 0 1.6rem; }
.guide-cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.guide-hero-img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius); margin: 1.4rem 0 0; background: var(--paper-2); }
.guide section { padding: 2.1rem 0; border-top: 1px solid var(--line); }
.guide h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; letter-spacing: -.015em; margin: 0 0 1rem; }
.guide h3 { font-family: var(--font-disp); font-weight: 500; font-size: 1.15rem; margin: 1.4rem 0 .3rem; }
.guide p, .guide li { color: var(--ink); font-size: 1.04rem; line-height: 1.7; }
.guide p { margin: 0 0 1rem; max-width: 66ch; }
.guide ul { padding-left: 1.1rem; margin: 0 0 1rem; }
.guide li { margin-bottom: .45rem; }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.2rem 0; }
.area-card { display: block; padding: 1.1rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: box-shadow .25s, transform .25s; }
.area-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.area-card b { font-family: var(--font-disp); color: var(--brand); font-size: 1.1rem; display: block; }
.area-card span { color: var(--ink-soft); font-size: .92rem; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { position: relative; padding-left: 2.6rem; margin-bottom: 1rem; }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: -2px; width: 1.8rem; height: 1.8rem; background: var(--brand); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-size: .9rem; }
.faq-item { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq-item h3 { margin: 0 0 .4rem; font-size: 1.12rem; color: var(--brand); }
.faq-item p { margin: 0; }
.guide-note { font-size: .9rem; color: var(--ink-soft); font-style: italic; }
.guide-ctaband { background: var(--brand); color: #fff; border-radius: var(--radius); padding: 2.4rem; text-align: center; margin: 2.4rem 0; }
.guide-ctaband h2 { color: #fff; }
.guide-ctaband p { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
.guide-foot { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
/* Area-page extras */
.snapshot { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.2rem 0 1.4rem; }
.snapshot-stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-bottom: 1.1rem; }
.snapshot-stat b { font-family: var(--font-disp); color: var(--brand); font-size: 1.7rem; font-weight: 500; display: block; line-height: 1.1; }
.snapshot-stat span { color: var(--ink-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.crosslinks { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .7rem; }
.crosslinks a { font-size: .92rem; padding: .42rem .85rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--brand); transition: background .2s; }
.crosslinks a:hover { background: var(--paper-2); }
@media (max-width: 620px) { .area-grid { grid-template-columns: 1fr; } .guide-top nav .btn-ghost { display: none; } }
