/* =====================================================
   ACTUALITÉS
===================================================== */

.fisel-actualites {
    padding: 90px 0;
    background: #ffffff;
}

.fisel-actualites .container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =====================================================
   TITRE
===================================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--fisel-teal-dark);
    margin-bottom: 15px;
}

.section-header p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}


/* =====================================================
   GRID
===================================================== */

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


/* =====================================================
   CARTE
===================================================== */

.actualite-card {

    display: flex;
    flex-direction: column;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0,0,0,.08);

    transition: .35s ease;

    height: 100%;

}

.actualite-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 18px 42px rgba(0,0,0,.14);

}


/* =====================================================
   IMAGE
===================================================== */

.actualite-image{

    display:block;

    overflow:hidden;

}

.actualite-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.actualite-card:hover img{

    transform:scale(1.06);

}


/* =====================================================
   CONTENU
===================================================== */

.actualite-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}


/* =====================================================
   DATE
===================================================== */

.actualite-date{

    color:var(--fisel-orange);

    font-weight:700;

    font-size:.9rem;

    margin-bottom:12px;

    text-transform:uppercase;

    letter-spacing:.05em;

}


/* =====================================================
   TITRE
===================================================== */

.actualite-content h3{

    margin:0 0 18px;

    line-height:1.3;

    font-size:1.45rem;

}

.actualite-content h3 a{

    color:var(--fisel-teal-dark);

    text-decoration:none;

    transition:.3s;

}

.actualite-content h3 a:hover{

    color:var(--fisel-orange);

}


/* =====================================================
   TEXTE
===================================================== */

.actualite-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:28px;

    flex:1;

}


/* =====================================================
   BOUTON LIRE
===================================================== */

.btn-news{

    align-self:flex-start;

    text-decoration:none;

    color:#fff;

    background:var(--fisel-teal);

    padding:12px 22px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-news:hover{

    background:var(--fisel-orange);

    transform:translateX(4px);

}


/* =====================================================
   BOUTON BAS
===================================================== */

.actualites-footer{

    text-align:center;

    margin-top:60px;

}

.btn-all-news{

    display:inline-block;

    text-decoration:none;

    background:var(--fisel-orange);

    color:#fff;

    padding:15px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-all-news:hover{

    background:var(--fisel-teal-dark);

    transform:translateY(-3px);

}


/* =====================================================
   PAS D'ARTICLE
===================================================== */

.no-news{

    text-align:center;

    color:#777;

    font-size:1.1rem;

    padding:40px;

}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width:1024px){

    .actualites-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    .fisel-actualites{

        padding:70px 0;

    }

    .section-header{

        margin-bottom:45px;

    }

    .actualites-grid{

        grid-template-columns:1fr;

        gap:28px;

    }

    .actualite-image img{

        height:220px;

    }

    .actualite-content{

        padding:22px;

    }

    .actualite-content h3{

        font-size:1.3rem;

    }

    .btn-news,
    .btn-all-news{

        width:100%;

        text-align:center;

    }

}