/* Composant CARD

#unsa-card {
    padding-top: 50px;
    padding-bottom: 50px;
}


.card.unsa-card {
    border-radius: 24px;
    border: none;

    max-width: 100%;
    box-shadow: 0 8px 10px 0 rgba(23, 25, 27, 0.199), 0 2px 4px 0 rgba(44,62,80,0.07);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px 0 10px 0;
}

.card-img-top-wrapper {
    position: relative;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
    height: 210px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.category-badge {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 24px;
    padding: 0.35rem 1.4rem;
    min-width: 110px;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.08);
}

    .badge-juridique, .badge-sante { 
        background-color:var(--badge-juridique);
    }
    .badge-conseils, .badge-hotel { 
        background-color: var(--badge-conseils); 
    }
    .badge-territoires, .badge-bien-etre  { 
        background-color:var(--badge-territoires); 
    }


.date-badge {
    position: absolute;
    right: 24px;
    bottom: 20px;
    z-index: 2;
    background: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.card-body {
    padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    font-weight: 700;
    color: var(--unsa-official);
    font-size: 1.3rem;
    margin-bottom: 0.55rem;
    line-height: 1;
}

.card-text {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}


@media (max-width: 991px) {
    .card.unsa-card {
        width: 100%;
        min-width: unset;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .card.unsa-card {
        width: 98%;
        min-height: 350px;
        border-radius: 18px;
    }
    .card-img-top-wrapper,
    .card-img-top {
        border-radius: 18px 18px 0 0;
        height: 160px;
    }
    .category-badge,
    .badge-juridique 
    .badge-sante
    .badge-conseils 
    .badge-hotel
    .badge-territoires 
    .badge-bien-etre {
        left: 16px;
        top: 12px;
        font-size: 1rem;
        padding: 6px 20px;
        min-width: 72px;
        border-radius: 22px;

    }
    .date-badge {
        right: 16px;
        bottom: 14px;
        font-size: 1rem;
        padding: 3px 14px;
        min-width: 52px;
        border-radius: 16px;

    }
} */