/* ==============================
   Hero Actualités
   ============================== */
.actu-hero {
    background: linear-gradient(135deg, #37517e 0%, #2a3d5f 100%);
    padding-top: 90px;
    padding-bottom: 3rem;
}

@media (max-width: 576px) {
    .actu-hero {
        padding-top: 70px;
    }
}

.actu-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .actu-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .actu-hero-icon {
        display: none;
    }
}

.actu-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.actu-hero-label {
    display: inline-block;
    background: rgba(71, 178, 228, 0.2);
    color: #47b2e4;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .actu-hero-label {
        align-self: center;
    }
}

.actu-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .actu-hero-title {
        font-size: 1.5rem;
    }
}

.actu-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

.actu-hero-icon {
    flex-shrink: 0;
    width: 160px;
    opacity: 0.85;
}

/* ==============================
   Articles
   ============================== */
.actu-content {
    background: #f8fafc;
    min-height: 40vh;
}

.article-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 12px rgba(55, 81, 126, 0.08);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(55, 81, 126, 0.16) !important;
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-content .content-text {
    line-height: 1.6;
}

.article-meta {
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 0.75rem;
}

.article-actions .btn {
    transition: all 0.25s ease;
    border-radius: 20px;
    background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
}

.article-actions .btn:hover {
    opacity: 0.9;
    transform: translateX(3px);
    color: #fff;
}

.empty-state {
    padding: 3rem 0;
    color: #6b7280;
}

@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .article-extra {
        display: none;
    }
}
