.datesWrapper {
    border: 1px solid white;
    border-radius: 20px;
    /* margin-top: 50px; */
}

.date {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr) minmax(0, 1.5fr) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    align-items: center;
    margin: 10px;
}

.lieu {
    display: grid;
    justify-items: start;
    align-items: start;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.text_date {
    font-family: 'Montserrat';
    font-size: 1rem;
    line-height: 1em;
    text-align: left;
    margin: 0;
    text-indent: 0;
    padding: 0;
    overflow-wrap: anywhere;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    color: black;
    white-space: normal;
}

@media (max-width: 767px) {
    .date {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
        margin: 0;
        padding: 16px 12px;
    }

    .date {
        border-top: 1px solid rgba(255, 255, 255, 0.6);
    }

    .lieu {
        justify-items: center;
    }

    .text_date {
        text-align: center;
        margin-bottom: 2px;
    }

    .btn {
        justify-self: center;
        max-width: 100%;
        padding: 8px 10px;
    }
}

@media (max-width: 479px) {
    .date {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .btn {
        padding: 8px 5px;
    }
}