/* Video Consent Wall */
.video-consent-wall {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #1c1917;
    /* stone-900 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-consent-wall video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-consent-wall-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    /* Reduced blur for video */
    -webkit-backdrop-filter: blur(8px);
    background: linear-gradient(to top, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.video-consent-content {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.video-consent-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-consent-icon {
    font-size: 3rem;
    color: #DD4250;
    opacity: 0.8;
}

.video-consent-title {
    font-family: 'Noto Serif', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.2;
}

.video-consent-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.video-consent-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

@media (max-width: 640px) {
    .video-consent-title {
        display: block !important;
        font-size: 1.25rem !important;
    }

    .video-consent-text {
        display: none !important;
    }

    .video-consent-header {
        flex-direction: row !important;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .video-consent-wall-overlay {
        padding: 2rem 1rem !important;
        align-items: flex-start !important;
    }

    .video-consent-content {
        gap: 0.75rem !important;
    }

    .video-consent-icon {
        font-size: 2rem !important;
    }

    .video-consent-btns button,
    .video-consent-btns a {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.7rem !important;
    }
}


/* Global Content Typography */
.prose h3,
.about-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.625;
    color: #261818;
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.prose h4,
.about-content h4 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.25rem !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    color: #5a4040 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 0 !important;
}

.prose p,
.about-content p,
.prose li,
.about-content li {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5a4040;
    margin-bottom: 2rem;
}

.prose p:last-child,
.about-content p:last-child {
    margin-bottom: 0;
}

.prose li,
.about-content li {
    margin-bottom: 0;
}

.prose ul,
.about-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

/* Global Content Links */
.prose a,
.about-content a {
    color: #DD4250;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.prose a:hover,
.about-content a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Pull Quote: Intro (at the top) */
.pull-quote-intro {
    font-family: 'Noto Serif', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: #261818 !important;
    /* on-surface black */
    line-height: 1.1 !important;
    font-size: 2.25rem !important;
    text-align: left !important;
    margin-bottom: 3rem !important;
}

/* Pull Quote: Transcript (interspersed) */
.pull-quote-transcript {
    font-family: 'Noto Serif', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: #DD4250 !important;
    /* brand-red */
    line-height: 1.1 !important;
    font-size: 2.25rem !important;
    text-align: center !important;
    margin: 0 !important;
}

@media (min-width: 768px) {
    .pull-quote-intro {
        font-size: 3.5rem !important;
    }

    .pull-quote-transcript {
        font-size: 3.5rem !important;
    }
}

/* Remove Tailwind automatically added quotes */
.prose blockquote p:before,
.prose blockquote p:after,
.prose blockquote:before,
.prose blockquote:after {
    content: none !important;
}

.prose blockquote {
    border-left: none !important;
    padding: 0 !important;
    margin: 2rem auto !important;
    max-width: 900px !important;
    background: transparent !important;
}

.quote-wrapper {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(221, 66, 80, 0.1);
    border-bottom: 1px solid rgba(221, 66, 80, 0.1);
    text-align: center;
}