
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2A2D43;
    background: #f8f9fa;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2A2D43;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles spécifiques à l'article */
.single-post {
    padding: 120px 0 60px;
}
.post-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.post-header {
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}
.post-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #6C63FF;
    font-weight: 600;
}
.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.post-content {
    padding: 40px;
    line-height: 1.8;
}
.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #6C63FF;
}
.post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}
.post-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.post-content ul, .post-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}
.post-content li {
    margin-bottom: 10px;
}
blockquote {
    border-left: 4px solid #6C63FF;
    padding: 20px;
    margin: 30px 0;
    background: #f9f9ff;
    font-style: italic;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
th {
    background: #f5f5ff;
    font-weight: 600;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid #f0f0f0;
}
.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tag {
    background: #f0f0ff;
    color: #6C63FF;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}
.tag:hover {
    background: #6C63FF;
    color: white;
}
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-share a {
    color: #6C63FF;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.social-share a:hover {
    transform: translateY(-3px);
    color: #5a52d6;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header, .post-content {
        padding: 25px;
    }
    .post-title {
        font-size: 1.8rem;
    }
    .post-image {
        height: 250px;
    }
    .post-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}