/* ========================================
   Quote Box - Elegant Cinematic Style
   ======================================== */

.quote-box {
    position: relative;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
    background: var(--color-bg-secondary);
    text-align: center;
    overflow: hidden;
}

/* Decorative gradient orbs */
.quote-box::before,
.quote-box::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.quote-box::before {
    background: var(--color-accent-blue);
    top: -200px;
    left: -100px;
}

.quote-box::after {
    background: var(--color-accent-primary);
    bottom: -200px;
    right: -100px;
}

.quote-box blockquote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
}

/* Quote marks decoration */
.quote-box blockquote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-family: Georgia, serif;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    pointer-events: none;
}

.quote-box blockquote span {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.quote-box blockquote footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--color-accent-blue);
    letter-spacing: 0.05em;
}

/* Animated line decoration */
.quote-box .quote-line {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--color-accent-gradient);
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Alternative: Full-width quote with background image */
.quote-box.quote-box--hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-box.quote-box--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 20, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .quote-box {
        padding: clamp(3rem, 10vw, 5rem) 1.25rem;
    }

    .quote-box blockquote::before {
        font-size: 5rem;
        top: -25px;
    }

    .quote-box blockquote span {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .quote-box blockquote footer {
        margin-top: 1.25rem;
        font-size: 0.9rem;
    }

    .quote-box .quote-line {
        width: 60px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quote-box {
        padding: 2.5rem 1rem;
    }

    .quote-box blockquote::before {
        font-size: 4rem;
        top: -20px;
    }

    .quote-box blockquote span {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .quote-box blockquote footer {
        font-size: 0.85rem;
    }

    .quote-box .quote-line {
        width: 50px;
    }
}
