
.actu-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 14px 30px 14px;
    margin-top: 120px;
}

.actu-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px 0;
}

    .actu-head h1 {
        margin: 0;
        font-size: 28px;
        font-weight: 900;
        color: #004661;
    }

.actu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
    width: 100%;
}

.actu-card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 14px 32px rgba(0,0,0,.10);
    display: flex;
    flex-direction: column;
}

.actu-img {
    position: relative;
    background: #f2f2f2;
    aspect-ratio: 16/9;
    overflow: hidden;
}

    .actu-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.actu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: 12px;
    color: #004661;
}

.actu-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.actu-title {
    font-weight: 900;
    font-size: 18px;
    color: #004661;
    margin: 0;
    line-height: 1.2;
}

.actu-excerpt {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.45;
}

.actu-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,.06);
    display: flex;
    justify-content: flex-end;
}

.actu-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: #0b5b6a;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

.actu-detail-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 26px 12px 40px 12px;
    margin-top: 120px;
}

.backbar {
    margin-bottom: 14px;
}

.btn-back {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    font-weight: 800;
    color: #004661;
    text-decoration: none;
}

.hero {
    position: relative;
    aspect-ratio: 16/9;
    background: #f2f2f2;
}

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.badge-date {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 12px;
    color: #004661;
}

.content {
    padding: 18px;
}

.text {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

.actions {
    margin-top: 18px;
    padding: 0 18px 18px 18px;
}

.btn-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg,#0b5b6a,#0088a9);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0,136,169,.28);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    box-sizing: border-box;
    max-width: 100%;
}

    .btn-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0,136,169,.36);
        filter: brightness(1.02);
    }


@media (max-width: 1024px) {
    .actu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    /* wrap */
    .actu-wrap,
    .actu-detail-wrap {
        margin-top: 90px;
        padding: 18px 12px;
    }

    /* liste */
    .actu-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .actu-title {
        font-size: 16px;
    }

    .actu-detail-wrap .content {
        padding: 14px 14px 0 14px; 
    }

    .actu-detail-wrap .actions {
        padding: 0 14px 14px 14px; 
    }

    .actu-detail-wrap .btn-link {
        width: 100%;
        padding: 14px 18px;
        border-radius: 999px;
        box-shadow: 0 12px 26px rgba(0,136,169,.30);
    }

    .text {
        font-size: 14px;
    }
}
