/* INTRO */
.fpa-intro {
    background: #ffffff;
}

.fpa-intro-box {
    background: #F4F4F4;
    border-left: 10px solid #FFC000;
    border-radius: 30px;
    padding: 42px;
}

/* SORTIES */
.fpa-sorties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fpa-sortie-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    overflow: hidden;
    transition: all .25s ease;
}

.fpa-sortie-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
}

.fpa-sortie-card:hover h3,
.fpa-sortie-card:hover p {
    color: #1F1F1F;
}

.fpa-sortie-img {
    height: 240px;
    background: #D2D2D2;
    background-size: cover;
    background-position: center;
}

.fpa-sortie-content {
    padding: 30px;
}

.fpa-date {
    display: inline-block;
    background: #FFC000;
    color: #1F1F1F;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
}

@media (max-width: 980px) {
    .fpa-sorties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fpa-intro-box,
    .fpa-sortie-content {
        padding: 30px;
    }

    .fpa-btn {
        width: 100%;
    }
}