/* Article Page Styles */
.article-container {
    min-height: 100vh;
}

/* Styles supprimés car en conflit avec blog.css */

.breadcrumb {
    margin-bottom: 2rem;
    text-align: left;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-hover);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-category {
    color: var(--accent-color);
    font-weight: 600;
}

/* Styles supprimés car en conflit avec blog.css */

/* Styles supprimés car en conflit avec blog.css */

.article-content {
    padding: 4rem 2rem;
}

.article-image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* En arrière-plan */
}

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

.article-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    font-size: 1.8rem;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.article-cta {
    background: var(--section-alt-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.related-articles {
    background: var(--section-alt-bg);
    padding: 4rem 2rem;
}

.related-articles h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.related-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.related-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header {
        padding: 6rem 1rem 3rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
    
    .article-image {
        height: 250px;
    }
    
    .content-wrapper p {
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
} 