.sponsored-bar {
    width: 100%;
    padding: 8px 16px;
    background: var(--sponsored-bg);
    color: var(--sponsored-text);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
    position: sticky;
    top: 0;
    z-index: 102;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (min-width: 1024px) {
    .site-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}

.site-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.main-content {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 375px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

.section {
    padding: var(--section-pad-mobile) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--section-pad-desktop) 0;
    }
}

.section--white {
    background: var(--surface);
}

.section--muted {
    background: var(--surface-muted);
}

.section--cool {
    background: var(--bg-cool);
}

.full-bleed {
    width: 100%;
}

.display-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--slate);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-intro {
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 32px;
}
