/* ========== GLEAMING QUOTES SLIDER ========== */
.quotes-section {
    position: relative;
    width: 100%;
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #faf8f6 0%, #ffffff 50%, #faf8f6 100%);
    overflow: visible;
    padding: 80px 40px;
}

.quotes-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-slide.active {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: #B76E79;
    letter-spacing: 0.05em;
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Ensure gleaming spans get explicit styles */
.quote-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    color: #B76E79;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Override gleaming defaults for quote-text */
.quote-text.gleaming {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
    font-weight: 300 !important;
    font-style: italic !important;
    color: #B76E79 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.3 !important;
    display: block !important;
}

.quote-text.gleaming span {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
    font-weight: 300 !important;
    font-style: italic !important;
    color: #B76E79 !important;
    letter-spacing: 0.05em !important;
}

/* Responsive */
@media (max-width: 768px) {
    .quotes-section {
        min-height: 20vh;
        padding: 60px 20px;
    }

    .quotes-slider {
        min-height: 80px;
    }

    .quote-text {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        white-space: normal;
    }

    .quote-text span {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
}