.actu-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #0D5C2E;
    text-decoration: none;
    margin-bottom: 20px;
    transition: gap .15s;
}
.actu-back:hover { gap: 10px; color: #0D5C2E; text-decoration: none; }

.actu-article {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.actu-cover {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.actu-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.actu-cover .asa-news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
}
.actu-body { padding: 28px 32px 36px; }
.actu-meta {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.actu-meta i { color: #0D5C2E; }
.actu-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}
.actu-content {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
}

/* Sidebar */
.actu-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    position: sticky;
    top: 20px;
}
.actu-recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    transition: opacity .15s;
}
.actu-recent-item:last-child { border-bottom: none; }
.actu-recent-item:hover { opacity: .8; text-decoration: none; }
.actu-recent-img {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
}
.actu-recent-img img { width: 100%; height: 100%; object-fit: cover; }
.actu-recent-date { font-size: 11px; color: #9ca3af; margin-bottom: 4px; }
.actu-recent-title { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.35; }

@media (max-width: 768px) {
    .actu-cover { height: 200px; }
    .actu-body  { padding: 20px 18px 28px; }
}
