/*
    ==========================================================
    PROJECT : DEVENIR-ARTISAN.NET
    FILE    : main-testimonials.css
    AUTH    : Renaud
    CREATED : 21 décembre 2025
    UPDATED : 22 décembre 2025
    ==========================================================
*/

/**
*   @project        DEVENIR-ARTISAN.NET
*   @description    Mise en page de la section Témoignages.
*
*   @file           css/main-testimonials.css
*/

/* --- BLOCK : Main Testimonials --- */
.main-testimonials {
    /* PLACEMENT */
    padding: 5rem 0;
    width: 100%;

    /* VISUEL (Remplace bg-alt) */
    background-color: var(--color-background-body);
}

/* --- ELEMENT : Grid --- */
.main-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.main-testimonials--alt {
    background-color: var(--color-background-section-alt);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .main-testimonials {
        padding: 3.5rem 0;
    }
}