﻿.blocMaillages {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.TitreBlocMaillagesContainer {
    display: flex;
    min-width: 222px;
    height: auto;
    border-radius: 15px;
    background: #EE3C34;
    justify-content: center;
    align-items: center;
}

.TitreBlocMaillages {
    width: 142px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    color: var(--blanc);
}

.listMaillagesContainer {
    display: flex;
    gap: 15px;
}

.maillagesContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    padding: 17px 18px;
    border-radius: 10px;
    background: #F8F8F8;
    height: 100%;
}

.maillageContainerTitre {
    color: #1D1D1F;
    font-family: Montserrat !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}

.maillagesContent {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.maillageLien {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Nunito !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    border: 1px solid #6B6B6B;
    height: 38px;
    width: fit-content;
    border-radius: 30px;
    background: var(--blanc);
    padding: 10px 10px;
}

@media screen and (max-width: 1280px) {
    .TitreBlocMaillagesContainer {
        height: 80px;
    }

    .TitreBlocMaillages {
        width: auto;
    }

    .blocMaillages {
        flex-direction: column;
    }

    .listMaillagesContainer {
        flex-wrap: wrap;
    }

    .maillagesContainer {
        width: 100%;
        height: fit-content;
    }
}

@media screen and (max-width: 500px) {
    .blocMaillages {
        gap: 10px;
    }

    .listMaillagesContainer {
        flex-wrap: wrap;
        gap: 20px;
    }

    .TitreBlocMaillagesContainer {
        color: var(--noir);
        background: unset;
        height: 100%;
    }

    .TitreBlocMaillages {
        color: var(--noir);
        width: 100%;
        text-align: center;
        font-family: Nunito;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
    }

    .maillagesContainer, .maillagesContent {
        align-items: center;
        height: fit-content;
    }

    .maillagesContent {
        row-gap: 10px;
        column-gap: 5px;
    }

    .maillageContainerTitre {
        text-align: center;
    }

}
