/* --- SECTION ACTUALITES --- */
.actus-container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.titre-section {
    font-family: 'Passion One', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.actus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.actu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.actu-img {
    height: 220px;
    width: 100%;
}

.actu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actu-content {
    padding: 25px;
}

.actu-tag {
    display: inline-block;
    background: #1f7a34;
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
}

.actu-date {
    font-size: 0.8rem;
    color: #888;
}

.actu-content h3 {
    font-family: 'Passion One', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 15px 0 10px 0;
    line-height: 1;
}

.actu-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.actu-btn {
    display: inline-block;
    text-decoration: none;
    color: black;
    font-family: 'Passion One', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid #1f7a34;
    padding-bottom: 2px;
}

/* --- RESPONSIVE 768px --- */
@media (min-width: 768px) {
    .actus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- RESPONSIVE 1024px --- */
@media (min-width: 1024px) {
    .actus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .actu-card {
        transition: transform 0.3s ease;
    }
    
    .actu-card:hover {
        transform: translateY(-10px);
    }
}