 /* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2A2D43;
}
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
section {
    padding: 80px 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Styles spécifiques au Blog */
.blog-page {
    padding: 100px 20px 60px;
    background: #f8f9fa;
}
.blog-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.blog-post:hover {
    transform: translateY(-5px);
}
.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.post-content {
    padding: 25px;
}
.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6C63FF;
}
.post-date {
    margin-right: 15px;
}
.post-category {
    background: #f0f0ff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}
.post-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2A2D43;
}
.post-excerpt {
    color: #666;
    margin-bottom: 20px;
}
.read-more {
    color: #6C63FF;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Espaces publicitaires */
.ad-space {
    background: #f0f0f0;
    border: 1px dashed #ccc;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
}
.ad-space p {
    color: #888;
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.page-numbers {
    display: flex;
    gap: 10px;
}
.page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: white;
    color: #2A2D43;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.page-numbers a:hover,
.page-numbers a.current {
    background: #6C63FF;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .post-title {
        font-size: 1.3rem;
    }
    .post-content {
        padding: 20px;
    }
}