.article-section {
    padding: 80px 0;
    margin-top: 5%;
    background-color: transparent;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.9);
    z-index: -1;
    transform: scale(1.1);
}

.article-container {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.article-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

.article-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.article-container:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
}

.article-date-badge {
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    transition: transform 0.3s ease;
}

.article-date-badge:hover {
    transform: scale(1.05);
}

.article-content {
    padding: 50px 60px;
}

.article-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.article-meta span {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.article-meta span:hover {
    color: #e67e22;
}

.article-meta i {
    margin-right: 10px;
    color: #e67e22;
}

.article-titre {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-titre:hover {
    color: #e67e22;
}

.article-texte {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    letter-spacing: 0.3px;
}

.article-texte p {
    margin-bottom: 25px;
}

.article-texte h2 {
    font-size: 28px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.article-texte h3 {
    font-size: 24px;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.article-nav-btn {
    padding: 12px 25px;
    border-radius: 30px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}

.article-nav-btn:hover {
    background-color: #e67e22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.article-nav-btn i {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .article-container {
        margin: 20px;
    }
    
    .article-content {
        padding: 30px;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-titre {
        font-size: 28px;
    }
    
    .article-texte {
        font-size: 16px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }
}