*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI",sans-serif;
    background:#f5f7fb;
    color:#333;
}

/* HERO */
.hero-archives{
    max-width:850px;
    margin:45px auto 55px;
    padding:0 20px;
    text-align:center;
}

.hero-archives h1{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2.2rem,4vw,3rem);
    font-weight:600;
    color:#334155;
    line-height:1.1;
}

.hero-divider{
    width:60px;
    height:3px;
    margin:16px auto 18px;
    border-radius:99px;
    background:#C9A66B;
}

.hero-archives p{
    max-width:650px;
    margin:auto;
    color:#64748b;
    font-size:1rem;
    line-height:1.7;
}

/* RECHERCHE */
.search{
    max-width:1350px;
    margin:25px auto;
    padding:0 20px;
}

.search input{
    width:100%;
    padding:14px 22px;
    border:1px solid #e6e6e6;
    border-radius:50px;
    background:white;
    font-size:.96rem;
    outline:none;
    transition:.2s;
}

.search input:focus{
    border-color:#C9A66B;
    box-shadow:0 0 0 3px rgba(201,166,107,.15);
}

/* BOUTONS */
.annees{
    max-width:1350px;
    margin:0 auto;
    padding:0 20px 24px;
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:8px;
}

.annees button{
    padding:8px 20px;
    border-radius:999px;
    border:1px solid #ddd;
    background:white;
    color:#556070;
    font-size:.95rem;
    cursor:pointer;
    transition:.25s;
}

.annees button:hover{
    background:#C9A66B;
    border-color:#C9A66B;
    color:white;
}

.annees button.active{
    background:#C9A66B;
    border-color:#C9A66B;
    color:white;
}

/* CONTENEUR */
.archives{
    max-width:1350px;
    margin:0 auto 55px;
    background:white;
    border:1px solid #e6e6e6;
    border-radius:20px;
    overflow:hidden;
}

/* ARCHIVE */
.archive{
    padding:24px 28px;
    transition:.2s;
}

.archive:hover{
    background:#fafafa;
}

.archive:not(:last-child){
    border-bottom:1px solid #ececec;
}

/* DATE */
.archive .date{
    display:block;
    color:#C9A66B;
    font-size:.92rem;
    font-weight:700;
    margin-bottom:10px;
}

/* TITRE */
.archive h2{
    font-size:1.45rem;
    font-family:Georgia,serif;
    color:#20263a;
    font-weight:600;
    line-height:1.25;
    margin-bottom:10px;
}

/* DESCRIPTION */
.archive p{
    font-size:.98rem;
    color:#5d687b;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){

    .hero-archives{
        margin-top:28px;
        margin-bottom:28px;
    }

    .hero-archives h1{
        font-size:1.9rem;
    }

    .hero-archives p{
        font-size:.92rem;
    }

    .archive{
        padding:20px;
    }

    .archive h2{
        font-size:1.3rem;
    }

    .archive p{
        font-size:.94rem;
    }

    .annees{
        justify-content:center;
    }

    .annees button{
        padding:8px 16px;
        font-size:.9rem;
    }
}