.ctr-sportif {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    padding: 25px 0px;
    font-size: 1.0rem;
}

.ctr-sportif-taupe {
    background-color: var(--color-taupe);
}

.ctr-sportif h1 {
    text-align: center;
    padding: 15px 0;
    font-size: 2.2rem;
}

.ctr-sportif p {
    padding: 15px 25px;
}

.ctr-sportif hr {
    border: none;
    height: 2px;
    margin: 40px auto;
    width: 70%;
    background-image: linear-gradient(to right, rgba(131, 70, 51, 0), rgba(131, 70, 51, 1), rgba(131, 70, 51, 0));
}

.ctr-sportif-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    background-color: var(--color-beige);
}

.ctr-sportif-images-abonnements img {
    padding: 10px 25px;
    flex: 1 1 auto;
    max-width: 600px;
    height: auto;
}

.ctr-sportif-images-pack img {
    padding: 10px 25px;
    flex: 1 1 auto;
    max-width: 1000px;
    height: auto;
}

.ctr-sportif ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-weight: bold;
}

/* La team */
.ctr-sportif-team h1 {
    background-color: var(--color-taupe);
    padding: 50px;
    margin-bottom: 50px;
}

.ctr-sportif-team h2 {
    font-size: 1.8rem;
    text-align: center;
    padding-top: 15px;
    color: var(--color-font);
}

.ctr-sportif-team img {
    margin: 0 auto;
    width: 200px;
    border-radius: 15%;
}

.ctr-sportif-team hr {
    border: none;
    height: 2px;
    margin: 40px auto;
    width: 70%;
    background-image: linear-gradient(to right, rgba(131, 70, 51, 0), rgba(131, 70, 51, 1), rgba(131, 70, 51, 0));
}

/* CSS pour ajouter des coins rectangulaires sur les li */
.ctr-sportif li {
    position: relative;
    font-size: 1rem;
    padding: 40px 50px;
}

.ctr-sportif li::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--color-brown);
    border-left: 2px solid var(--color-brown);
    transform: translate(-15px, -7px);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

.ctr-sportif li::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--color-brown);
    border-right: 2px solid var(--color-brown);
    transform: translate(-1px, 12px);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), linear-gradient(to top rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

@media (max-width: 1440px) {
    .ctr-sportif-team hr {
        width: 90%;
    }
}

@media (max-width: 1230px) {
    .ctr-sportif-images {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ctr-sportif-images img {
        max-width: 100%;
    }
}