/* Titre */
.page-titre {
    background-image: url("../images/background/bg-general.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Bloc */
.bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bloc-solo {
    width: 95%;
    max-width: 79rem;
    background-color: #fff;
    display: flex;
}

.section-gauche {
    width: 25rem;
    background-color: #e3e3e3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-gauche img {
    height: 12.5rem;
}

.section-droite {
    padding: 2rem 0;
    width: 54rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-droite-contenu {
    width: 43.75rem;
}

.section-droite-contenu p {
    margin: 1rem 0;
    line-height: 1.5rem;
}

/* Saison 2024 */
.video-yt {
    width: 100%;
}

.video-yt iframe {
    aspect-ratio: 16/9;
}

@media (max-width: 1200px) {
    .section-gauche {
        width: 20rem;
    }
    .section-gauche img {
        height: 10rem;
    }
}

@media (max-width: 1060px) {
    .section-droite {
        font-size: 1rem;
    }
    .section-gauche {
        width: 15rem;
    }
    .section-gauche img {
        height: 8rem;
    }
}

@media (max-width: 980px) {
    .bloc-solo {
        height: auto;
        flex-direction: column;
    }
    .section-gauche {
        width: 100%;
    }
    .section-droite {
        width: 100%;
        min-height: 10rem;
    }
    .section-gauche img {
        height: 5rem;
        padding: 2rem 0;
    }
}

@media (max-width: 840px) {
    .section-droite-contenu {
        width: 95%;
    }
    
    .section-droite-contenu p {
        line-height: 1.25rem;
    }
}