/* L'AGENCE SAUVAGE - Blog CSS - Fond crème */
:root {
    --forest-green: #224f3c;
    --burnt-orange: #c96839;
    --mauve: #A288A6;
    --cream: #f2ede1;
    --stone-gray: #8c8982;
    --warm-brown: #57412f;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

.blog-hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, #1a3d2e 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.blog-main, .article-body, .article-footer-section {
    background-color: var(--cream);
    padding: 3rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-image {
    height: 160px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--mauve) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-emoji { font-size: 4rem; }

.article-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-content h2 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.article-content p { line-height: 1.8; margin-bottom: 1.25rem; }

.article-intro {
    background: linear-gradient(135deg, rgba(34, 79, 60, 0.05) 0%, rgba(201, 104, 57, 0.05) 100%);
    border-left: 4px solid var(--burnt-orange);
    padding: 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.breadcrumb { font-size: 0.875rem; margin-bottom: 1.5rem; opacity: 0.8; }
.breadcrumb a { color: var(--white); text-decoration: none; }
.breadcrumb .separator { margin: 0 0.5rem; }

.article-category-badge {
    display: inline-block;
    background: var(--burnt-orange);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, #1a3d2e 100%);
    color: var(--white);
    padding: 2rem 0 3rem;
}

.article-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.article-hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.meta-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { font-size: 2rem; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; }
.author-title { font-size: 0.8rem; opacity: 0.8; }
.meta-details { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; opacity: 0.9; }

.article-container {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .article-container { grid-template-columns: 1fr; }
    .article-toc, .article-sidebar { display: none; }
}

.toc-sticky, .sidebar-sticky { position: sticky; top: 2rem; }
.toc-title { font-size: 0.9rem; font-weight: 700; color: var(--forest-green); margin-bottom: 1rem; }
.toc-content ul { list-style: none; padding: 0; }
.toc-content li { margin-bottom: 0.5rem; }
.toc-content a { color: var(--text-light); text-decoration: none; }
.toc-content a:hover { color: var(--burnt-orange); }

.share-box, .tags-box, .cta-box {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.cta-box { background: var(--forest-green); color: var(--white); }
.cta-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.cta-box .btn { display: block; text-align: center; }

.share-buttons { display: flex; flex-direction: column; gap: 0.5rem; }
.share-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    cursor: pointer;
    background: var(--white);
}

.author-box {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.author-avatar-large { font-size: 4rem; }
.author-bio h3 { margin-bottom: 0.5rem; color: var(--forest-green); }
.author-bio p { color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.author-link { color: var(--burnt-orange); text-decoration: none; font-weight: 600; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.related-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nav-prev, .nav-next {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
}
.nav-next { text-align: right; }
.nav-label { display: block; font-size: 0.8rem; color: var(--burnt-orange); margin-bottom: 0.25rem; }
.nav-title { font-weight: 600; }

.final-cta {
    background: var(--forest-green);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.final-cta h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.final-cta p { opacity: 0.9; margin-bottom: 1.5rem; }

.filter-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-tag {
    padding: 0.5rem 1rem;
    border: 2px solid var(--stone-gray);
    border-radius: 20px;
    background: var(--white);
    cursor: pointer;
}
.filter-tag.active { background: var(--burnt-orange); border-color: var(--burnt-orange); color: var(--white); }

.search-bar input {
    width: 100%;
    max-width: 400px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--stone-gray);
    border-radius: 8px;
    font-size: 1rem;
}

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.page-btn { padding: 0.5rem 1rem; border: 2px solid var(--stone-gray); border-radius: 6px; background: var(--white); }
.page-btn.active { background: var(--burnt-orange); border-color: var(--burnt-orange); color: var(--white); }

.faq-item { background: var(--cream); border-radius: 8px; margin-bottom: 0.75rem; }
.faq-item summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none; }
.faq-answer { padding: 0 1.25rem 1rem; color: var(--text-light); }

@media (max-width: 768px) {
    .article-content { padding: 1.5rem; }
    .author-box { flex-direction: column; text-align: center; }
    .article-navigation { grid-template-columns: 1fr; }
}
