/* SECTION */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* GRID DES MANIFESTATIONS */
.manifestations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* CARTE */
.manif-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.manif-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* TEXTE */
.manif-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.manif-item p {
    margin: 5px 0;
    color: #555;
    font-size: 0.95rem;
}

/* GALERIE IMAGES */
.manif-images {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

/* IMAGE */
.manif-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER IMAGE */
.manif-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .manif-images img {
        height: 90px;
    }
}
