.fel-intro {
    background-color: #eaf5fa;
}

.fel-current-edition {
    background: #e6ffe6;
}

.fel-past-editions .accordion-button {
    background-color: #f0f0f0;
    color: #333;
}

.fel-media .card-img-top {
    height: 200px;
    object-fit: cover;
}

.fel-archives {
    background-color: #f9f9f9;
}

/* Style de la galerie en grille */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

/* Miniatures d'images */
.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
