/* Quote Section Styles */
/* Based on Figma node-id: 2427-10227 (desktop) and 2427-10233 (mobile) */

.quote-section {
    padding: 0 120px;
    background: #fdf5f1;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quote-wrapper {
    position: relative;
    background: #ed6a59;
    border-radius: 24px;
    padding: 48px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
    min-height: 200px;
}

/* Quote Icons */
.quote-icon {
    position: absolute;
    width: 406px;
    height: 406px;
    pointer-events: none;
}

.quote-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Left Quote Icon */
.quote-icon-left {
    left: -46.18px;
    top: 50%;
    transform: translateY(-50%);
}

/* Right Quote Icon (rotated 180deg) */
.quote-icon-right {
    right: -46.18px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

/* Quote Text */
.quote-text {
    font-family: 'IvyOra Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    max-width: 600px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==================== TABLET/MEDIUM SCREENS (below 1200px) ==================== */
@media (max-width: 1199px) {
    .quote-section {
        padding: 0 60px;
    }

    .quote-icon {
        width: 300px;
        height: 300px;
    }

    .quote-icon-left {
        left: -35px;
    }

    .quote-icon-right {
        right: -35px;
    }

    .quote-text {
        font-size: 22px;
        max-width: 500px;
    }
}

/* ==================== MOBILE STYLES (below 768px) ==================== */
@media (max-width: 767px) {
    .quote-section {
        padding: 0 16px;
    }

    .quote-wrapper {
        min-height: 371px;
        padding: 48px 10px;
    }

    .quote-icon {
        width: 210px;
        height: 210px;
    }

    /* Reposition icons for mobile */
    .quote-icon-left {
        left: 50%;
        top: calc(50% - 131.5px);
        transform: translate(-50%, -50%);
    }

    .quote-icon-right {
        left: 50%;
        top: calc(50% + 134.5px);
        right: auto;
        transform: translate(-50%, -50%) rotate(180deg);
    }

    .quote-text {
        font-size: 24px;
        max-width: 100%;
        padding: 0 20px;
    }
}
