:root {
    color-scheme: light dark;

    --ad-gold-text: #936908;
    --ad-cyan: #14749d;
    --ad-bg: #F5FAFC;
    --ad-primary-container: #b7e5f0;
    --ad-on-primary-container: #00222e;
    --ad-text: #181C1D;
    --ad-divider-gold: rgba(20, 116, 157, 0.5);

    @media (prefers-color-scheme: dark) {
        --ad-gold-text: #E8CF55;
        --ad-cyan: #5DD5FC;
        --ad-bg: #121517;
        --ad-primary-container: #0E3540;
        --ad-on-primary-container: #B4EAFF;
        --ad-text: #E5E7E8;
        --ad-divider-gold: rgba(235, 203, 25, 0.22);
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--ad-bg);
    color: var(--ad-text);
    font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

main {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 20px 8px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ad-cyan);
    margin: 0 0 8px;

    @media (prefers-color-scheme: dark) {
        color: var(--ad-gold-text);
    }
}

h1 {
    font-family: 'Spectral', serif;
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 20px;
}

.hero {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 4px 0 24px;
}

article {
    font-size: 1.1rem;

    img {
        max-width: 100%;
        height: auto;
    }

    blockquote {
        position: relative;
        margin: 24px 0 26px;
        padding: 4px 0 4px 24px;
        border-left: 3px solid var(--ad-cyan);

        @media (prefers-color-scheme: dark) {
            border-left: 3px solid var(--ad-gold-text);
        }

        font-optical-sizing: auto;
        font-style: italic;
        font-weight: 500;
        font-size: 1.35rem;
        line-height: 1.58;
        color: var(--ad-text);

        &::before {
            content: "\201C";
            position: absolute;
            left: 12px;
            top: -0.34em;
            font-family: Georgia, serif;
            font-size: 3.75rem;
            line-height: 1;
            color: var(--ad-cyan);
            opacity: 0.25;
            pointer-events: none;

            @media (prefers-color-scheme: dark) {
                color: var(--ad-gold-text);
            }
        }

        em, cite {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-top: 16px;
            font-family: 'Inter', system-ui, sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: var(--ad-cyan);

            @media (prefers-color-scheme: dark) {
                color: var(--ad-gold-text);
            }

            &::before {
                display: inline-block;
                content: "";
                width: 22px;
                height: 1px;
                background: var(--ad-divider-gold);
            }
        }
    }
}

.video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 24px 0;
    border-radius: 10px;
    overflow: hidden;
    background: #000;

    iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

.audio {
    margin: 24px 0;

    audio {
        width: 100%;
    }
}

footer {
    max-width: 640px;
    margin: 32px auto 0;
    padding: 28px 20px 40px;
    background: var(--ad-primary-container);
    color: var(--ad-on-primary-container);
    border-radius: 12px 12px 0 0;
    text-align: center;

    p {
        margin: 0 0 16px;
        font-size: 1.05rem;
    }
}

.open-app {
    display: inline-block;
    margin: 0 0 18px;
    padding: 13px 26px;
    background: var(--ad-cyan);
    color: var(--ad-bg);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 999px;

    @media (prefers-color-scheme: dark) {
        background: var(--ad-gold-text);
        color: #121517;
    }
}

.stores {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;

    img {
        height: 44px;
        width: auto;
    }
}
