/* ==========================================================================
   House of Visions — Insights
   Sleek editorial-dark theme. Scoped under .hov-scroll-page so it overrides
   the per-page inline <style> blocks (which still supply each hero image).
   ========================================================================== */

.hov-scroll-page {
    --hov-gold: #c9a961;
    --hov-gold-bright: #e7cd94;
    --hov-gold-soft: rgba(201, 169, 97, .14);
    --hov-gold-line: rgba(201, 169, 97, .28);
    --hov-ink: rgba(245, 243, 238, .9);
    --hov-ink-dim: rgba(245, 243, 238, .62);
    --hov-ink-faint: rgba(245, 243, 238, .42);
    --hov-bg: #0a0a0a;
    --hov-panel: rgba(255, 255, 255, .035);
    --hov-panel-line: rgba(255, 255, 255, .09);
    --hov-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --hov-serif: 'Playfair Display', Georgia, serif;
    --hov-sans: 'Inter', system-ui, sans-serif;
    --hov-wrap: 760px;
}

/* --- page atmosphere ------------------------------------------------------ */
.hov-scroll-page main {
    position: relative;
    background:
        radial-gradient(120% 60% at 85% -5%, rgba(201, 169, 97, .08), transparent 60%),
        radial-gradient(90% 50% at 0% 100%, rgba(201, 169, 97, .05), transparent 55%),
        var(--hov-bg);
}

/* animated gold gradient shape (mirrors the home page header) */
.hov-scroll-page main::after {
    content: "";
    position: fixed;
    inset: -25%;
    pointer-events: none;
    z-index: 0;
    opacity: .85;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, .32) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, .18) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 97, .10) 0%, transparent 70%);
    animation: hovGradientShift 20s ease-in-out infinite;
    will-change: transform;
}
@keyframes hovGradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
    .hov-scroll-page main::after { animation: none; }
}

/* faint film-grain overlay for depth */
.hov-scroll-page main::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hov-scroll-page main > * { position: relative; z-index: 1; }

/* --- reading progress bar (pure CSS, scroll-driven) ---------------------- */
@supports (animation-timeline: scroll()) {
    html.hov-scroll-page body::before {
        content: "";
        position: fixed;
        top: 0; left: 0;
        height: 3px; width: 100%;
        z-index: 9999;
        transform-origin: 0 50%;
        transform: scaleX(0);
        background: linear-gradient(90deg, var(--hov-gold), var(--hov-gold-bright));
        animation: hov-read-progress linear both;
        animation-timeline: scroll(root block);
    }
    @keyframes hov-read-progress { to { transform: scaleX(1); } }
}

/* --- shared kicker / eyebrow -------------------------------------------- */
.hov-scroll-page .insights-hero h1::before,
.hov-scroll-page .article-hero h1::before {
    display: block;
    font-family: var(--hov-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--hov-gold);
    margin-bottom: 1.4rem;
}
.hov-scroll-page .article-hero h1::before { content: "Insights"; }
.hov-scroll-page .insights-hero h1::before { content: "Guides & Resources"; }

/* ==========================================================================
   INDEX — /insights
   ========================================================================== */
.hov-scroll-page .insights-hero {
    background: transparent;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid var(--hov-panel-line);
}
.hov-scroll-page .insights-hero h1 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: -.01em;
    color: #fff;
    max-width: 14ch;
    margin: 0 0 1.4rem;
}
.hov-scroll-page .insights-hero p {
    color: var(--hov-ink-dim);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.7;
    max-width: 56ch;
    margin: 0;
}

.hov-scroll-page .insights-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: clamp(1.5rem, 2.4vw, 2.4rem);
}

.hov-scroll-page .insight-card {
    position: relative;
    background: var(--hov-panel);
    border: 1px solid var(--hov-panel-line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1), border-color .45s, box-shadow .45s;
    opacity: 0;
    animation: hov-rise .7s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hov-scroll-page .insight-card:nth-child(1) { animation-delay: .05s; }
.hov-scroll-page .insight-card:nth-child(2) { animation-delay: .12s; }
.hov-scroll-page .insight-card:nth-child(3) { animation-delay: .19s; }
.hov-scroll-page .insight-card:nth-child(4) { animation-delay: .26s; }
.hov-scroll-page .insight-card:nth-child(5) { animation-delay: .33s; }
.hov-scroll-page .insight-card:nth-child(6) { animation-delay: .40s; }
.hov-scroll-page .insight-card:nth-child(7) { animation-delay: .47s; }
.hov-scroll-page .insight-card:nth-child(8) { animation-delay: .54s; }
@keyframes hov-rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hov-scroll-page .insight-card { animation: none; opacity: 1; }
}

.hov-scroll-page .insight-card:hover {
    transform: translateY(-6px);
    border-color: var(--hov-gold-line);
    box-shadow: 0 24px 50px -28px rgba(0, 0, 0, .9);
}
.hov-scroll-page .insight-card .insight-card-content,
.hov-scroll-page .insight-card > div { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.hov-scroll-page .insight-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: saturate(.92) contrast(1.02);
    transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.hov-scroll-page .insight-card:hover img { transform: scale(1.05); }
.hov-scroll-page .insight-card h2 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 0 0 .7rem;
}
.hov-scroll-page .insight-card h2 a { color: #fff; text-decoration: none; transition: color .3s; }
.hov-scroll-page .insight-card:hover h2 a { color: var(--hov-gold-bright); }
.hov-scroll-page .insight-card p {
    color: var(--hov-ink-dim);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0 0 1.3rem;
}
.hov-scroll-page .insight-card-meta {
    margin-top: auto;
    font-family: var(--hov-mono);
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hov-gold);
    padding-top: 1rem;
    border-top: 1px solid var(--hov-panel-line);
}

/* featured first card — full-width editorial banner */
.hov-scroll-page .insights-grid > .insight-card:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
    min-height: 340px;
}
.hov-scroll-page .insights-grid > .insight-card:first-child img {
    width: 52%;
    height: auto;
    min-height: 340px;
}
.hov-scroll-page .insights-grid > .insight-card:first-child .insight-card-content,
.hov-scroll-page .insights-grid > .insight-card:first-child > div {
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.4rem);
}
.hov-scroll-page .insights-grid > .insight-card:first-child::after {
    content: "Featured";
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    font-family: var(--hov-mono);
    font-size: .64rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--hov-bg);
    background: var(--hov-gold);
    padding: .4rem .7rem;
    z-index: 2;
}
.hov-scroll-page .insights-grid > .insight-card:first-child h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.hov-scroll-page .insights-grid > .insight-card:first-child p { font-size: 1.02rem; }
@media (max-width: 720px) {
    .hov-scroll-page .insights-grid > .insight-card:first-child { flex-direction: column; min-height: 0; }
    .hov-scroll-page .insights-grid > .insight-card:first-child img { width: 100%; min-height: 0; height: 210px; }
}

/* index CTA */
.hov-scroll-page .insights-cta {
    max-width: 1180px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    background:
        radial-gradient(90% 130% at 50% 0%, rgba(201, 169, 97, .12), transparent 70%),
        rgba(255, 255, 255, .02);
    border: 1px solid var(--hov-gold-line);
    border-radius: 6px;
}
.hov-scroll-page .insights-cta h2 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin: 0 0 1rem;
}
.hov-scroll-page .insights-cta p { color: var(--hov-ink-dim); margin: 0 auto 2rem; max-width: 46ch; }

/* shared button look */
.hov-scroll-page .insights-cta-btn,
.hov-scroll-page .article-cta-btn {
    display: inline-block;
    background: var(--hov-gold);
    color: var(--hov-bg);
    padding: .95rem 2.2rem;
    text-decoration: none;
    font-family: var(--hov-mono);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid var(--hov-gold);
    transition: background .3s, color .3s, transform .3s;
}
.hov-scroll-page .insights-cta-btn:hover,
.hov-scroll-page .article-cta-btn:hover {
    background: transparent;
    color: var(--hov-gold-bright);
    transform: translateY(-2px);
}

/* ==========================================================================
   POST — article pages
   ========================================================================== */
.hov-scroll-page .article-hero {
    position: relative;
    padding: clamp(4.5rem, 11vw, 9rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
    text-align: left;
    overflow: hidden;
}
/* deepen + warm the existing inline image with a cinematic bottom gradient */
.hov-scroll-page .article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 10, .35) 0%, rgba(10, 10, 10, .15) 35%, rgba(10, 10, 10, .92) 100%);
}
.hov-scroll-page .article-hero > * { position: relative; z-index: 1; max-width: var(--hov-wrap); margin-left: auto; margin-right: auto; }
.hov-scroll-page .article-hero h1 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: clamp(2.1rem, 5.2vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: #fff;
    max-width: 18ch;
    margin: 0 0 1.5rem;
}
.hov-scroll-page .article-meta {
    font-family: var(--hov-mono);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hov-ink-dim);
}

/* body */
.hov-scroll-page .article-content {
    max-width: var(--hov-wrap);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
}
.hov-scroll-page .article-content p,
.hov-scroll-page .article-content li {
    color: var(--hov-ink);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.15rem;
}
.hov-scroll-page .article-content > p:first-of-type {
    font-size: 1.22rem;
    line-height: 1.7;
    color: rgba(245, 243, 238, .96);
}
/* drop cap on the intro paragraph */
.hov-scroll-page .article-content > p:first-of-type::first-letter {
    font-family: var(--hov-serif);
    font-weight: 700;
    font-size: 3.6em;
    line-height: .72;
    float: left;
    margin: .08em .12em 0 0;
    color: var(--hov-gold);
}
.hov-scroll-page .article-content h2 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.2;
    color: #fff;
    margin: 3.2rem 0 1.1rem;
    padding-top: 1.5rem;
    position: relative;
}
.hov-scroll-page .article-content h2::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 44px; height: 2px;
    background: var(--hov-gold);
}
.hov-scroll-page .article-content h3 {
    font-family: var(--hov-sans);
    font-weight: 600;
    font-size: 1.22rem;
    color: var(--hov-gold-bright);
    margin: 2.2rem 0 .7rem;
}
.hov-scroll-page .article-content ul,
.hov-scroll-page .article-content ol { padding-left: 1.4rem; margin-bottom: 1.6rem; }
.hov-scroll-page .article-content li { margin-bottom: .55rem; padding-left: .3rem; }
.hov-scroll-page .article-content li::marker { color: var(--hov-gold); }
.hov-scroll-page .article-content strong { color: #fff; font-weight: 600; }
.hov-scroll-page .article-content a {
    color: var(--hov-gold-bright);
    text-decoration: none;
    border-bottom: 1px solid var(--hov-gold-line);
    transition: border-color .25s, color .25s;
}
.hov-scroll-page .article-content a:hover { color: #fff; border-color: var(--hov-gold-bright); }

/* short-answer block */
.hov-scroll-page .hov-answer-summary {
    background: var(--hov-gold-soft);
    border: 1px solid var(--hov-gold-line);
    border-left: 3px solid var(--hov-gold);
    border-radius: 4px;
    padding: 1.6rem 1.8rem;
    margin: 0 0 2.5rem;
}
.hov-scroll-page .hov-answer-summary h2 {
    font-family: var(--hov-mono);
    font-weight: 600;
    font-size: .74rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--hov-gold);
    margin: 0 0 .7rem;
    padding: 0;
}
.hov-scroll-page .hov-answer-summary h2::before { display: none; }
.hov-scroll-page .hov-answer-summary p { margin: 0; font-size: 1.04rem; line-height: 1.75; color: var(--hov-ink); }

/* checklist */
.hov-scroll-page .checklist {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--hov-panel-line);
    border-left: 3px solid var(--hov-gold);
    border-radius: 4px;
    padding: 2rem 2.2rem;
    margin: 2.5rem 0;
}
.hov-scroll-page .checklist h3 { color: var(--hov-gold); margin: 0 0 1rem; font-size: 1.1rem; }
.hov-scroll-page .checklist ul { list-style: none; padding: 0; margin: 0; }
.hov-scroll-page .checklist li { padding: .55rem 0 .55rem 2rem; position: relative; margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.hov-scroll-page .checklist li:last-child { border-bottom: 0; }
.hov-scroll-page .checklist li::before {
    content: "";
    position: absolute;
    left: 0; top: 1.05rem;
    width: 11px; height: 6px;
    border-left: 2px solid var(--hov-gold);
    border-bottom: 2px solid var(--hov-gold);
    transform: rotate(-45deg);
}

/* tip box */
.hov-scroll-page .tip-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--hov-panel-line);
    border-radius: 4px;
    padding: 1.6rem 1.8rem;
    margin: 2rem 0;
}
.hov-scroll-page .tip-box h4 {
    color: var(--hov-gold);
    margin: 0 0 .5rem;
    font-size: 1rem;
    font-family: var(--hov-sans);
    font-weight: 600;
}
.hov-scroll-page .tip-box p { margin: 0; }

/* faq (posts that use FAQPage) */
.hov-scroll-page .faq-item {
    border-bottom: 1px solid var(--hov-panel-line);
    padding: 1.4rem 0;
}
.hov-scroll-page .faq-item h3 { color: #fff; margin: 0 0 .6rem; font-size: 1.12rem; }
.hov-scroll-page .faq-item p { margin: 0; color: var(--hov-ink-dim); }

/* related links */
.hov-scroll-page .related-links {
    margin: 3rem 0;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--hov-panel-line);
    border-radius: 4px;
}
.hov-scroll-page .related-links h3 {
    font-family: var(--hov-mono);
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--hov-gold);
    margin: 0 0 1rem;
}
.hov-scroll-page .related-links a {
    color: var(--hov-ink);
    text-decoration: none;
    display: block;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    border-top: 0;
    transition: color .25s, padding-left .25s;
}
.hov-scroll-page .related-links a:last-child { border-bottom: 0; }
.hov-scroll-page .related-links a:hover { color: var(--hov-gold-bright); padding-left: .4rem; }

/* author bio */
.hov-scroll-page .author-bio {
    display: flex;
    gap: 1.6rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--hov-panel-line);
    border-radius: 4px;
    padding: 2rem 2.2rem;
    margin: 3.5rem 0;
    align-items: flex-start;
}
.hov-scroll-page .author-bio-photo {
    width: 96px; height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--hov-gold-line);
}
.hov-scroll-page .author-bio-text h3 {
    font-family: var(--hov-mono);
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--hov-gold);
    margin: 0 0 .8rem;
}
.hov-scroll-page .author-bio-text p { margin: 0 0 .7rem; font-size: .96rem; line-height: 1.7; color: var(--hov-ink-dim); }
.hov-scroll-page .author-bio-text strong { color: #fff; }
.hov-scroll-page .author-bio-text a { color: var(--hov-gold-bright); text-decoration: none; }
.hov-scroll-page .author-bio-text a:hover { text-decoration: underline; }
@media (max-width: 600px) {
    .hov-scroll-page .author-bio { flex-direction: column; align-items: stretch; }
    .hov-scroll-page .author-bio-photo { width: 76px; height: 76px; align-self: center; }
}

/* article CTA */
.hov-scroll-page .article-cta {
    text-align: center;
    padding: clamp(2.6rem, 5vw, 3.8rem) clamp(1.5rem, 4vw, 2.5rem);
    margin: 3.5rem 0 1rem;
    background:
        radial-gradient(90% 130% at 50% 0%, rgba(201, 169, 97, .14), transparent 70%),
        rgba(255, 255, 255, .02);
    border: 1px solid var(--hov-gold-line);
    border-radius: 6px;
}
.hov-scroll-page .article-cta h2 {
    font-family: var(--hov-serif);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin: 0 0 1rem;
    padding: 0;
}
.hov-scroll-page .article-cta h2::before { display: none; }
.hov-scroll-page .article-cta p { color: var(--hov-ink-dim); margin: 0 auto 1.8rem; max-width: 46ch; }

/* ==========================================================================
   INDEX PEEK DRAWER — slide-over preview, keeps the index mounted behind
   ========================================================================== */
.hov-scroll-page .insight-card { cursor: pointer; }

.hov-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(6, 6, 6, .62);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.hov-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.hov-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(560px, 94vw);
    z-index: 1001;
    background: #0d0d0d;
    border-left: 1px solid var(--hov-gold-line, rgba(201, 169, 97, .28));
    box-shadow: -40px 0 80px -40px rgba(0, 0, 0, .9);
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--hov-sans, 'Inter', system-ui, sans-serif);
}
.hov-drawer.is-open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
    .hov-drawer, .hov-drawer-backdrop { transition: none; }
}

.hov-drawer-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(10, 10, 10, .55);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background .25s, border-color .25s, transform .25s;
}
.hov-drawer-close:hover { background: var(--hov-gold, #c9a961); border-color: var(--hov-gold, #c9a961); color: #0a0a0a; transform: rotate(90deg); }

.hov-drawer-figure {
    position: relative;
    flex-shrink: 0;
    height: 220px;
    overflow: hidden;
}
.hov-drawer-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.hov-drawer-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, .2) 0%, rgba(13, 13, 13, .15) 45%, #0d0d0d 100%);
}

.hov-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.8rem 2rem 1.5rem;
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}
.hov-drawer-eyebrow {
    font-family: var(--hov-mono, monospace);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hov-gold, #c9a961);
    margin: 0 0 .7rem;
}
.hov-drawer-title {
    font-family: var(--hov-serif, 'Playfair Display', serif);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 1.5rem;
}
.hov-drawer-section-label {
    font-family: var(--hov-mono, monospace);
    font-size: .66rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--hov-gold, #c9a961);
    margin: 1.8rem 0 .7rem;
}
.hov-drawer-answer {
    color: rgba(245, 243, 238, .9);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
    min-height: 1.2em;
}
.hov-drawer-answer.is-loading { color: rgba(245, 243, 238, .42); }
.hov-drawer-outline { list-style: none; padding: 0; margin: .4rem 0 0; }
.hov-drawer-outline li {
    position: relative;
    padding: .55rem 0 .55rem 1.4rem;
    color: rgba(245, 243, 238, .8);
    font-size: .95rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.hov-drawer-outline li:last-child { border-bottom: 0; }
.hov-drawer-outline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 6px;
    height: 6px;
    background: var(--hov-gold, #c9a961);
    transform: rotate(45deg);
}

.hov-drawer-footer {
    flex-shrink: 0;
    padding: 1.2rem 2rem 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0d0d0d;
}
.hov-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    box-sizing: border-box;
    background: var(--hov-gold, #c9a961);
    color: #0a0a0a;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-family: var(--hov-mono, monospace);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid var(--hov-gold, #c9a961);
    transition: background .3s, color .3s;
}
.hov-drawer-cta:hover { background: transparent; color: var(--hov-gold-bright, #e7cd94); }
.hov-drawer-meta {
    text-align: center;
    margin: .9rem 0 0;
    font-family: var(--hov-mono, monospace);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245, 243, 238, .42);
}
