/**
 * Styles pour les plateaux AMCC simples sans effet de révélation
 */

/* Conteneur principal */
.amcc-plateaux-simple-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
    width: 100%;
}

/* Style de chaque élément plateau */
.amcc-plateau-simple-item {
    position: relative;
    width: calc(50% - 15px); /* Deux colonnes avec espace entre */
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

/* Animation d'entrée */
.amcc-plateau-simple-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.amcc-plateau-simple-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Conteneur de l'image */
.amcc-plateau-simple-image-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Image de fond */
.amcc-plateau-simple-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

/* Pied de l'élément avec titre */
.amcc-plateau-simple-footer {
    padding: 12px 5px 0;
}

.amcc-plateau-simple-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #1F386A !important;
}

/* Effet hover léger sur desktop */
@media (min-width: 993px) {
    .amcc-plateau-simple-item:hover .amcc-plateau-simple-image {
        transform: scale(1.02);
    }
}

/* Adaptation pour les différentes tailles d'écran */
@media (max-width: 992px) {
    .amcc-plateau-simple-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .amcc-plateau-simple-item {
        width: 100% !important;
        margin-bottom: 25px;
    }

    .amcc-plateau-simple-image {
        height: 300px;
    }
}

/* Ajustements pour correspondre au design */
.amcc-plateau-simple-footer {
    margin-top: 12px;
}

.amcc-plateau-simple-title {
    font-size: 20px;
    color: #4D4D4D !important;
    font-weight: 500;
}