.agenda-content div {
    margin: 0 0 12px;
}

.agenda-bloc .agenda-liste {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.agenda-bloc .agenda-liste .wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.agenda-bloc .agenda-liste .agenda-item {
    display: flex;
    width: 100%;
    padding: 32px;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    align-self: stretch;
    border-radius: 50px;
    background: #F7F7F7;
    text-decoration: none;
    transition: 0.5s all ease;
}

.agenda-bloc .agenda-liste .agenda-item:hover {
    opacity: 0.6;
    transform: scale(0.95);
    transition: 0.5s all ease;
}

.agenda-bloc .agenda-liste .agenda-item .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.agenda-bloc .agenda-liste .agenda-item .date .jour {
    color: #3d3960;
    font-family: "Roboto";
    font-size: 2.8rem;
    line-height: 1;
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.agenda-bloc .agenda-liste .agenda-item .date .mois {
    text-align: center;
    font-family: Roboto;
    font-size: 1.8rem;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.agenda-bloc .agenda-liste .agenda-item .separateur {
    width: 1px;
    height: 100%;
    background: #C8C8C8;
}

.agenda-bloc .agenda-liste .agenda-item .tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 8px 0;
}

.agenda-bloc .agenda-liste .agenda-item .tag .tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 100px;
    color: white;
    background: #EA4A54;
}

.agenda-bloc .agenda-liste .agenda-item .tag .tag-item.Formation {
    background: #EA4A54;
}

.agenda-bloc .agenda-liste .agenda-item .tag .tag-item.evenement {
    background: #273F6C;
}

.agenda-bloc .agenda-liste .agenda-item h3 {
    display: -webkit-box;
    font-family: "Roboto";
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #1A2843;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 768px) {
    .agenda-bloc .agenda-liste .agenda-item {
        height: auto;
        width: 100%;
        aspect-ratio: 1 / 1;
        flex-direction: column;
        justify-content: center;
    }

    .agenda-bloc .agenda-liste .agenda-item .date {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .agenda-bloc .agenda-liste .agenda-item .separateur {
        width: 100%;
        height: 1px;
        background: #C8C8C8;
    }

    .agenda-bloc .agenda-liste .agenda-item .tag {
        align-items: center;
        justify-content: center;
    }

    .agenda-bloc .agenda-liste .agenda-item h3 {
        text-align: center;
        font-size: 2rem;
        -webkit-line-clamp: 3;
    }
}