/* ===== PAGE ACTUALITÉS ===== */

/* Grille actualités */
.actus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.actu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.actu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.actu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.actu-content {
    padding: 20px;
}

.actu-date {
    color: #d4af37;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.actu-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0a2a3a;
}

.actu-excerpt {
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Animation au scroll */
.actu-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.actu-card:nth-child(1) { animation-delay: 0.1s; }
.actu-card:nth-child(2) { animation-delay: 0.2s; }
.actu-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
}

.empty-state i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}