.activity-club__group.groupe-club {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    margin-bottom: 3rem;
    align-items: stretch;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    border-radius: 12px;
}

.groupe-club__title {
    width: 15%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-weight: 600;
    color: var(--grey-blue);
    border-radius: 12px 0 0 12px;
    font-size: 1.2em;
}

.groupe-club__course.cours-club {
    display: flex;
    align-items: center;
}

.groupe-club__course.courses-list {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cours-club__title {
    width: 45%;
    text-align: center;
    color: var(--grey-blue);
}

.cours-club__seances {
    width: 45%;
    text-align: center;
    color: var(--grey-blue);
}

.cours-club__price {
    width: 10%;
    text-align: center;
    color: var(--grey-blue);
}

.groupe-club__age {
    width: 15%;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--grey-blue);
    border-radius: 0 12px 12px 0;
    font-weight: 600;
}

.activity-club__group.groupe-club ul {
    list-style: none;
    padding: 0;
}

.activity-club__group.groupe-club ul li {
    margin-bottom: 5px;
}

.groupe-club__course .cours-club:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
    .activity-club__group.groupe-club {
        flex-direction: column;
    }

    .groupe-club__title {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }

    .groupe-club__age {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }

    .groupe-club__course.courses-list {
        width: 100%;
    }

    .cours-club__seance {
        font-size: 11px;
    }

    .cours-club__title {
        width: 40%;
        padding: 0 5px;
        font-size: 11px;
    }

    .cours-club__price {
        font-size: 11px;
        width: 15%;
    }

    .activity-club__group.groupe-club ul li {
        margin-bottom: 0;
    }
}

