.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state svg {
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-state h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #145783;
    margin-bottom: 8px;
}

.empty-state p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #595959;
}

.agenda-texte h2 {
    font-size: 24px;
    font-family: "Inter",sans-serif;
    padding-bottom: 8px;
}

.agenda-texte p {
    font-family: "Inter",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.agenda-texte {
    padding-bottom: 50px;
    padding-top: 70px;
}

.agenda-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 50px;
    justify-content: flex-end;
}

.agenda-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 286px;
    height: 48px;
}

.agenda-form input:focus {
    outline: none;
}

.agenda-form button {
    padding: 10px;
    border: none;
    border-radius: 60px;
    background-color: var(--secondary);
    color: #fff;
    cursor: pointer;
    width: 48px;
    height: 48px;
}

.agenda-form button:hover {
    background-color: var(--primary);
}

.events {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.event-image img {
    border-radius: 10px;
    width: 400px !important;
}

.event-date {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 80px;
    text-align: center;
}

.agenda-day {
    padding: 10px;
    background-color: #dcdcdc;
    border-radius: 9px 9px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.agenda-day p {
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter",sans-serif;
}

.event-date span {
    font-size: 24px;
    font-weight: 700;
    font-family: "Inter",sans-serif;
}

.event-date-info p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter",sans-serif;
    padding-bottom: 8px;
    padding-top: 8px;
}

.event-text a {
    text-decoration: none;
}

.event-text a:hover {
    text-decoration: underline;
    color: var(--secondary);
    h2 {
        color: var(--secondary);
    }
}

.event-text h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Inter",sans-serif;
    padding-bottom: 10px;
    color: black;
}

.event-text p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter",sans-serif;
    line-height: 20px;
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .agenda-texte {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .agenda-texte h2 {
        font-size: 22px;
    }

    .event-image img {
        width: 220px;
        height: auto;
    }

    .event-text h2 {
        font-size: 20px;
    }
}

/* Tablet small - 768px */
@media (max-width: 768px) {
    .agenda-texte {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .agenda-texte h2 {
        font-size: 20px;
    }

    .agenda-form {
        justify-content: center;
    }

    .events {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .event-image img {
        width: 100%;
        height: auto;
        width: 355px !important;
    }

    .event-text h2 {
        font-size: 18px;
    }

    .event-text p {
        font-size: 13px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .agenda-texte {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .agenda-texte h2 {
        font-size: 18px;
    }

    .agenda-texte p {
        font-size: 13px;
        line-height: 22px;
    }

    .agenda-form {
        align-items: stretch;
        padding-bottom: 30px;
    }

    .agenda-form input {
        width: 100%;
        box-sizing: border-box;
    }

    .agenda-form button {
        align-self: flex-end;
    }

    .events {
        gap: 12px;
    }

    .event-content {
        width: 100%;
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .event-date {
        width: 65px;
    }

    .agenda-day p {
        font-size: 13px;
    }

    .event-date span {
        font-size: 20px;
    }

    .event-date-info p {
        font-size: 12px;
    }

    .event-text h2 {
        font-size: 16px;
        padding-bottom: 6px;
    }

    .event-text p {
        font-size: 12px;
        line-height: 18px;
    }
}
