/* --- CONFIGURATION BLOG  */
.page-blog {
    background-color: #ffffff; /* Fond blanc comme sur l'image */
    color: #333;
    padding-top: 120px; /* Espace pour le menu fixe */
}

.blog-header h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.header-line {
    border-top: 1px solid #ddd;
    opacity: 1;
    margin-bottom: 50px;
}

/* ARTICLES */
.post-meta {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.post-excerpt {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #000;
}

.post-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* BARRE LATÉRALE */
.filter-title {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.sidebar-filters ul li {
    margin-bottom: 12px;
}

.sidebar-filters ul li a {
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.sidebar-filters ul li a:hover, 
.sidebar-filters ul li a.active {
    color: #000;
}

/* RESPONSIVITÉ */
@media (max-width: 991.98px) {
    .blog-container { padding: 0 30px; }
    .sidebar-filters { margin-top: 50px; border-top: 1px solid #eee;  }
    .post-img-container { margin-bottom: 20px }
}

/* --- STYLE ARTICLE SEUL --- */
.page-single-article {
    padding-top: 0; /* On laisse l'image monter sous le menu transparent */
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.sidebar-sticky {
    position: sticky;
    top: 120px; /* Reste visible au scroll */
}

.article-hero img {
    object-position: center;
}

/* Adaptation pour le titre */
.post-header h1 {
    letter-spacing: -1px;
    line-height: 1.1;
    color: #000;
}

@media (max-width: 991.98px) {
    .article-hero { height: 40vh !important; }
    .post-header h1 { font-size: 2rem; }
}
