/* Section Actualités */
#actualites {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1a2a6c;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    text-align: justify;
    margin: 0 auto 3rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    position: relative;
}

.news-card.featured::before {
    content: "À la une";
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffab00;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(26, 42, 108, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #1a2a6c;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta span::before {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.news-date::before {
    content: "📅";
}

.news-location::before {
    content: "📍";
}

.news-link {
    display: inline-block;
    margin-top: 1rem;
    color: #1a2a6c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #ffab00;
}

.news-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.news-link:hover::after {
    margin-left: 1rem;
}

.news-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a2a6c;
    color: white;
}

.btn-primary:hover {
    background: #0d1b4a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #1a2a6c;
    border: 2px solid #1a2a6c;
}

.btn-secondary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

/* Section Agenda */
.agenda-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.agenda-section h3 {
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.agenda-grid {
    display: grid;
    gap: 1.5rem;
}

.agenda-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f5f7ff;
    transition: all 0.3s ease;
}

.agenda-item:hover {
    background: #e0e5ff;
    transform: translateX(5px);
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: #1a2a6c;
    color: white;
    border-radius: 6px;
    padding: 0.5rem;
}

.agenda-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-content h4 {
    color: #1a2a6c;
    margin-bottom: 0.5rem;
}

.agenda-content p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .agenda-item {
        flex-direction: column;
    }
    
    .agenda-date {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.5rem 1rem;
    }
}