/**
 * Page stylesheet for the single-sales experience (/one + v-single variant).
 * Loads the burgundy navbar, single-post hero, and minimal footer styles.
 */

@import url('/css/components/burgundy-navbar.css');
@import url('/css/components/single-post-hero.css');
@import url('/css/components/founder-trust.css');

/* --- Minimal footer, scoped to .sph-footer --- */

.sph-footer {
    border-top: 1px solid var(--color-burgundy-100, #fce4ea);
    background: #fff;
    padding: 24px 16px;
    margin-top: 48px;
}

.sph-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-ink-muted, #6b7280);
}

.sph-footer__link {
    color: var(--color-burgundy);
    text-decoration: none;
    font-weight: 500;
}

.sph-footer__link:hover,
.sph-footer__link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.sph-footer__sep {
    margin: 0 8px;
    color: var(--color-burgundy-200, #f9c9d5);
}

.sph-footer__copy {
    color: var(--color-ink-muted, #6b7280);
}

@media (width <= 480px) {
    .sph-footer__inner {
        line-height: 1.8;
    }

    .sph-footer__sep {
        display: none;
    }

    .sph-footer__copy {
        display: block;
        margin-top: 8px;
    }
}
