.page-informations {
    padding: 2rem;

    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.page-informations .bloc-description {
    min-height: 22rem;

    padding: 2rem;

    background-color: #EBEBEB;

    font-size: 1.25rem;
}

.page-informations .bloc-description:not(:first-child) {
    margin-top: 2rem;
}

.page-informations .bloc-description > img {
    width: 22rem;
    max-height: 22rem;

    object-fit: cover;

    float: left;

    margin-right: 2rem;
    margin-bottom: 2rem;

    background-color: #E3E3E3;
}

.page-informations .bloc-description > p {
    margin-bottom: 1rem;

    text-align: justify;
}

.page-informations .bloc-description > img,
.page-informations button {
    border-radius: 4px;
    box-shadow: 0 3px 6px #00000029;
}

.page-informations .documents {
    display: flex;
    flex-direction: row;
}

.page-informations .bloc-description button {
    padding: 0.75em 2rem;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    background-color: var(--couleur-thème);

    color: white;
    font-size: 1rem;

    text-align: left;
}

.page-informations .bloc-description button img {
    height: 1.625rem;

    margin-left: 0.5rem;
}

.page-informations .documents a:not(:first-child) {
    margin-left: 0.5rem;
}

.page-informations h2.nom {
    margin-bottom: 1rem;

    font-size: 1.5rem;
    font-weight: bold;
}

.page-informations h2.horaires,
.page-informations h2.adresse {
    margin-top: 2rem;
    margin-bottom: 1rem;

    font-size: inherit;
    font-weight: bold;

    clear: both;
}

.page-informations h2.horaires + table {
    width: 40rem;

    margin-bottom: 2rem;

    border-collapse: separate;
    border-spacing: 0 0.3rem;
}

.page-informations h2.horaires + table td {
    vertical-align: baseline;

    padding: 0;
}

.page-informations h2.horaires + table td:first-child::after {
    content: ' :';
}

.page-informations a.itinéraire {
    display: block;
    width: fit-content;
}

.page-informations a.itinéraire img {
    height: 1.25rem;

    position: relative;
    top: -0.125rem;
}

@media screen and (max-width: 62.5rem) {
    .page-informations .bloc-description {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-informations .bloc-description > img {
        margin-right: 0;
    }

    .page-informations .bloc-description > p,
    .page-informations .bloc-description > .documents {
        align-self: stretch;
    }

    .page-informations .documents {
        justify-content: center;
    }

    .page-informations h2.horaires + table {
        width: 100%;
    }

    .page-informations a.itinéraire {
        width: 100%;
    }

    .page-informations .itinéraire button {
        width: 100%;
    }
}

@media screen and (max-height: 48.128rem), (max-width: 37.5rem) {
    .page-informations .bloc-description {
        font-size: 1rem;
    }

    .page-informations .bloc-description > img {
        width: 100%;
        max-height: unset;
    }

    .page-informations .bloc-description > .documents {
        flex-direction: column;

    }

    .page-informations .documents > *,
    .page-informations .documents button {
        width: 100%;
    }

    .page-informations .documents a:not(:first-child) {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .page-informations h2.horaires + table td {
        border-bottom: 1px dashed black;
    }

}