/**
 * Customer Quotes Section Styles
 * Based on Figma node: 386-2408
 */

.customer-quotes {
    padding: 119px 115px;
}

.customer-quotes__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid Layout */
.customer-quotes__grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}

/* Individual Quote Card */
.customer-quotes__card {
    background-color: #E9EBF3;
    border-radius: 23px;
    padding: 14px 15px;
    width: 385px;
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-quotes__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 322px;
}

/* Quote Text */
.customer-quotes__text {
    font-family: 'Avenir Next', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #121C66;
    margin: 0;
}

/* Attribution */
.customer-quotes__attribution {
    font-family: 'Avenir Next', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #121C66;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
    .customer-quotes {
        padding: 80px 60px;
    }

    .customer-quotes__card {
        width: 320px;
        min-height: 240px;
    }

    .customer-quotes__text {
        font-size: 18px;
    }

    .customer-quotes__attribution {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .customer-quotes {
        padding: 60px 40px;
    }

    .customer-quotes__grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .customer-quotes__card {
        width: calc(50% - 10px);
        min-width: 280px;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .customer-quotes {
        padding: 50px 20px;
    }

    .customer-quotes__grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .customer-quotes__card {
        width: 100%;
        max-width: 400px;
        min-height: 200px;
        padding: 20px;
    }

    .customer-quotes__quote {
        gap: 16px;
    }

    .customer-quotes__text {
        font-size: 16px;
    }

    .customer-quotes__attribution {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .customer-quotes {
        padding: 40px 16px;
    }

    .customer-quotes__card {
        min-height: 180px;
        border-radius: 16px;
    }

    .customer-quotes__text {
        font-size: 15px;
    }

    .customer-quotes__attribution {
        font-size: 12px;
    }
}
