/* ==========================================================
   ARCHIVE AGENDA
========================================================== */

.fisel-archive-agenda {
    background: #fff;
}

/* HERO */

.agenda-archive-hero {
    padding: 100px 0 80px;
    background: linear-gradient(
        135deg,
        var(--fisel-teal-dark) 0%,
        var(--fisel-teal) 100%
    );
    color: #fff;
}

.agenda-archive-hero .container,
.agenda-archive-list .container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.agenda-archive-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--fisel-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}

.agenda-archive-hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    margin: 0 0 24px;
}

.agenda-archive-hero p {
    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: .92;
}

/* LISTE */

.agenda-archive-list {
    padding: 80px 0 100px;
}

.agenda-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

/* CARTE */

.agenda-archive-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    transition: .35s ease;
    height: 100%;
}

.agenda-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 46px rgba(0,0,0,.14);
}

.agenda-archive-image {
    display: block;
    overflow: hidden;
    background: var(--fisel-light);
}

.agenda-archive-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.agenda-archive-card:hover .agenda-archive-image img {
    transform: scale(1.06);
}

.agenda-archive-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.agenda-archive-date {
    color: var(--fisel-orange);
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.agenda-archive-content h2 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0 0 18px;
}

.agenda-archive-content h2 a {
    color: var(--fisel-teal-dark);
    text-decoration: none;
}

.agenda-archive-content h2 a:hover {
    color: var(--fisel-orange);
}

.agenda-archive-meta {
    display: grid;
    gap: 8px;
    color: #666;
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 28px;
    flex: 1;
}

.agenda-archive-meta span::before {
    content: "•";
    color: var(--fisel-orange);
    font-weight: 900;
    margin-right: 8px;
}

.agenda-archive-button {
    align-self: flex-start;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--fisel-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: .3s ease;
}

.agenda-archive-button:hover {
    background: var(--fisel-orange);
    transform: translateX(4px);
}

/* PAGINATION */

.agenda-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.agenda-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--fisel-light);
    color: var(--fisel-teal-dark);
    text-decoration: none;
    font-weight: 800;
    transition: .3s ease;
}

.agenda-pagination .page-numbers.current,
.agenda-pagination .page-numbers:hover {
    background: var(--fisel-orange);
    color: #fff;
}

/* VIDE */

.agenda-empty {
    text-align: center;
    color: #666;
    font-size: 1.15rem;
    padding: 70px 20px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .agenda-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agenda-archive-hero {
        padding: 80px 0 60px;
    }

    .agenda-archive-list {
        padding: 60px 0 80px;
    }

    .agenda-archive-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .agenda-archive-image img {
        height: 220px;
    }

    .agenda-archive-content {
        padding: 24px;
    }

    .agenda-archive-button {
        width: 100%;
        text-align: center;
    }
}