
.tuiles-container {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.tuile {
    display: flex;
    width: 352px;
    min-width: 256px;
    max-width: 352px;
    /*min-height: 214px;*/
    padding: 32px 24px 40px 24px;
    flex-direction: column;
    cursor: pointer;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid var(--Niveaux-de-gris-Gris-clair, #C5CAD2);
    background: var(--Autres-Blanc, #FFF);
    /* Ombrages/Élévation 1 */
    box-shadow: 0px 1px 4px 0px rgba(34, 54, 84, 0.24);
}

.tuile:hover, .tuile:focus {
    border: 1px solid #1472bf;
    box-shadow: 0px 2px 8px 1px rgb(34, 54, 84, 0.24);
    text-decoration: none;
    color: black;
    outline: none;
}


@media (max-width: 668px) {
    .tuiles-container {
        display: flex;
        flex-direction: column;
    }
}

.tuile-title {
    font-feature-settings: 'clig' off, 'liga' off;
    margin: 0px;
}

.tuile-text {
    font-feature-settings: 'clig' off, 'liga' off;
    /* Paragraphes (Open Sans)/Small (14px)/Regular */
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.tuile p{
    margin: 0px;
}
