/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif;
    background: #f5f4f0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
    color: #2c2c2c;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ACCESSIBILITÉ ===== */
/* Skip to content */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: #b05a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Focus visible sur tous les éléments interactifs */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #b05a1a;
    outline-offset: 2px;
}

.article-card:focus-visible {
    outline: 3px solid #b05a1a;
    outline-offset: 4px;
    transform: translateY(-4px);
}

.share-btn:focus-visible {
    outline: 3px solid #b05a1a;
    outline-offset: 2px;
}

/* Réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .hero-word {
        transition: none !important;
    }

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .article-card,
    .article-card img,
    .article-card::after {
        transition: none !important;
    }
}

/* ===== INTRO VIDEO ===== */
#intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #1a1520;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#skip-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    transition: all 0.3s;
}

#skip-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid #e8e8e8;
}

.site-header nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 2px 32px;
    gap: 14px;
}

.site-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b05a1a;
    letter-spacing: 3px;
    transition: color 0.2s;
}

.site-logo:hover {
    opacity: 0.8;
}

.site-logo-img {
    height: 84px;
    width: auto;
    display: block;
}

.nav-sep {
    width: 2px;
    height: 20px;
    background: #ddd;
    border-radius: 1px;
}

.nav-tagline {
    font-size: 0.7rem;
    color: #7a6850;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.site-header .menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin-left: auto;
}

.site-header .menu a {
    color: #6a5a48;
    font-weight: 700;
    font-size: 0.85rem;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.site-header .menu a:hover {
    color: #b05a1a;
}

/* Sélecteur de langue */
.lang-switcher {
    display: flex;
    gap: 6px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid #e0e0e0;
}

.lang-switcher ul {
    list-style: none;
    display: flex;
    gap: 6px;
}

.lang-switcher li {
    display: flex;
}

.lang-switcher a,
.lang-switcher span {
    display: flex;
    align-items: center;
}

.lang-switcher img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.lang-switcher .current-lang img,
.lang-switcher img:hover {
    opacity: 1;
}

/* ===== HERO ===== */
.hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px 32px 20px;
    text-align: center;
    position: relative;
}

/* Meeple décoratif derrière le hero */
.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 260px;
    background-image: url('../images/meeple.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.hero h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hero h1 .hero-word {
    color: #b05a1a;
    display: inline-block;
    transition: opacity 0.4s, transform 0.4s;
}

.hero p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== BARRE DE FILTRES ===== */
.filter-bar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 2px solid #ddd;
    border-radius: 30px;
    background: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box input:focus {
    border-color: #b05a1a;
    box-shadow: 0 0 0 3px rgba(176, 90, 26, 0.12);
}

/* ===== PAS DE RÉSULTATS ===== */
.no-results {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    gap: 12px;
}

.no-results-icon {
    font-size: 3rem;
}

.no-results p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: #777;
}

/* ===== SECTION EN VEDETTE ===== */
/* Séparateur meeple */
.meeple-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1300px;
    margin: 10px auto 20px;
    padding: 0 24px;
}

.meeple-divider::before,
.meeple-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right), #ddd, transparent);
}

.meeple-divider::after {
    --dir: left;
}

.meeple-divider img {
    flex-shrink: 0;
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(35%) sepia(60%) saturate(800%) hue-rotate(10deg) brightness(95%);
}

/* Animation apparition au scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.2, 0, 0, 1), transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px 40px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: #b05a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-left: 4px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 340px));
    justify-content: center;
    gap: 18px;
}

.featured-grid .article-card {
    height: 420px;
    border: 3px solid #b05a1a;
}

.featured-grid .article-card:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 320px;
}

/* ===== GRILLE D'ARTICLES ===== */
.articles-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ===== CARTE ARTICLE ===== */
.article-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    height: 420px;
    background: #e0e0e0;
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.article-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
	object-position: top center;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card[data-title^="bôken"] img {
	object-fit: cover;
	object-position: 20% center;
}

.article-card .no-thumb {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e8e4de, #d8d0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.card-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top,
        rgba(10,5,0,0.92) 0%,
        rgba(10,5,0,0.6) 35%,
        rgba(10,5,0,0.1) 60%,
        transparent 100%);
}

.card-date {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.card-info h2 {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.card-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-card::after {
    content: '\2192';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #b05a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.6) rotate(-20deg);
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.article-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ===== ARTICLE SINGLE ===== */
.single-article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 28px 60px;
}

.single-article h1 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.single-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 40px;
    display: flex;
    gap: 16px;
}

.single-article .entry-content {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #333;
}

.single-article .entry-content h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 40px 0 16px;
}

.single-article .entry-content p {
    margin-bottom: 20px;
}

.single-article .entry-content img {
    border-radius: 14px;
    margin: 30px 0;
}

.single-featured {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 18px;
    margin-bottom: 40px;
}

/* ===== DISCLAIMER ===== */
.article-disclaimer {
    margin-top: 50px;
    padding: 20px 24px;
    background: #f0ede8;
    border-left: 3px solid #b05a1a;
    border-radius: 0 10px 10px 0;
    font-size: 0.8rem;
    color: #5c4e3c;
    line-height: 1.6;
    font-style: italic;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 780px;
    margin: 0 auto;
    padding: 20px 28px 0;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #6a5a48;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #b05a1a;
}

.bc-sep {
    color: #ccc;
}

.bc-current {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

/* ===== PARTAGE RÉSEAUX SOCIAUX ===== */
.share-bar {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.share-btn:hover {
    border-color: #b05a1a;
    color: #b05a1a;
}

.share-facebook:hover { border-color: #1877f2; color: #1877f2; }
.share-twitter:hover { border-color: #1da1f2; color: #1da1f2; }
.share-linkedin:hover { border-color: #0a66c2; color: #0a66c2; }
.share-copy.copied { border-color: #22c55e; color: #22c55e; }

/* ===== ARTICLES LIÉS ===== */
.related-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 28px 80px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-grid .article-card {
    height: 240px;
}

.related-grid .article-card:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
}

/* ===== PAGINATION ===== */
.pagination {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pagination a, .pagination span {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px solid #ddd;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: #b05a1a;
    color: #b05a1a;
}

.pagination .current {
    background: #b05a1a;
    border-color: #b05a1a;
    color: #fff;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    max-width: 700px;
    margin: 20px auto 0;
    padding: 0 24px 50px;
}

.newsletter-inner {
    background: #f0ede8;
    border-radius: 20px;
    padding: 44px 40px;
    text-align: center;
}

.newsletter-inner h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.newsletter-inner p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 30px;
    background: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form input:focus {
    border-color: #b05a1a;
}

.newsletter-form button {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 14px 28px;
    background: #b05a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #d06a20;
    transform: translateY(-1px);
}

/* ===== CONTACT ===== */
.contact-page {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 28px 100px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    color: #444;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b05a1a;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    background: #b05a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: center;
}

.btn-submit:hover {
    background: #d06a20;
    transform: translateY(-2px);
}

.contact-success {
    text-align: center;
    padding: 40px;
    background: #f0f9f0;
    border-radius: 16px;
    border: 2px solid #86d48e;
}

.contact-success span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.contact-success p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: #1a6a1f;
}

.contact-error p {
    background: #fef0f0;
    border: 2px solid #f5a5a5;
    border-radius: 12px;
    padding: 12px 20px;
    color: #8a1a1a;
    font-size: 0.9rem;
}

/* ===== À PROPOS ===== */
.about-page .entry-content a {
    color: #b05a1a;
    text-decoration: underline;
}

.about-page .entry-content a:hover {
    color: #d06a20;
}

/* ===== BANNIÈRE COOKIES ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 2px solid #e8e8e8;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-inner p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cookie-link {
    font-size: 0.78rem;
    color: #b05a1a;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-btn {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    padding: 8px 22px;
    background: #b05a1a;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-btn:hover {
    background: #d06a20;
}

/* ===== BANDEAU SOUTIEN ===== */
.support-banner {
    background: #f0ede8;
    border-top: 1px solid #e0dcd4;
    border-bottom: 1px solid #e0dcd4;
    padding: 24px 28px;
}

.support-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.support-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.support-text strong {
    color: #1a1a1a;
}

.support-btn {
    flex-shrink: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    background: transparent;
    color: #b05a1a;
    border: 2px solid #b05a1a;
    border-radius: 25px;
    transition: all 0.25s;
    white-space: nowrap;
}

.support-btn:hover {
    background: #b05a1a;
    color: #fff;
}

/* ===== FORMULAIRE AUTEUR ===== */
.author-form-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.author-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.author-form-header h1 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.author-form-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 0.75rem;
}

.author-form-note {
    font-size: 0.85rem;
    color: #888;
}

.author-fieldset {
    border: 2px solid #e8e4de;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
    transition: border-color 0.3s;
}

.author-fieldset:focus-within {
    border-color: #b05a1a;
}

.author-fieldset legend {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #b05a1a;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fieldset-icon {
    font-size: 1.3rem;
}

.author-form .form-group {
    margin-bottom: 1.25rem;
}

.author-form .form-group:last-child {
    margin-bottom: 0;
}

.author-form .form-group label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.author-form .form-group textarea {
    min-height: 100px;
}

.author-form-footer {
    text-align: center;
    margin-top: 2rem;
}

.author-form-reassurance {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.author-form-footer .btn-submit {
    font-size: 1.1rem;
    padding: 14px 40px;
}

@media (max-width: 600px) {
    .author-form-page {
        padding: 2rem 1rem;
    }

    .author-fieldset {
        padding: 1rem;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 2px solid #e8e8e8;
    padding: 32px 28px;
    background: #f5f5f5;
}

.site-footer .footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 3px;
}

.footer-copy {
    font-size: 0.75rem;
    color: #888;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: #777;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b05a1a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-card {
        height: 340px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* Navigation mobile */
    .site-header nav {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .nav-tagline, .nav-sep {
        display: none;
    }

    .site-header .menu {
        gap: 16px;
    }

    .site-header .menu a {
        font-size: 0.8rem;
    }

    /* Hero mobile */
    .hero {
        padding: 36px 16px 16px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Grilles mobile */
    .articles-grid {
        grid-template-columns: 1fr;
        padding: 10px 16px 40px;
        gap: 16px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid .article-card,
    .featured-grid .article-card:first-child {
        height: 300px;
    }

    .article-card {
        height: 300px;
        border-radius: 14px;
    }

    /* Flèche toujours visible sur mobile */
    .article-card::after {
        opacity: 1;
        transform: scale(1);
    }

    .card-info {
        padding: 18px;
    }

    .card-info h2 {
        font-size: 1.05rem;
    }

    /* Related mobile */
    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-grid .article-card,
    .related-grid .article-card:first-child {
        height: 200px;
    }

    .related-section {
        padding: 30px 16px 60px;
    }

    /* Single article mobile */
    .single-article {
        padding: 16px 16px 60px;
    }

    .single-article h1 {
        font-size: 1.6rem;
    }

    .single-featured {
        height: 220px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .breadcrumb {
        padding: 16px 16px 0;
        font-size: 0.72rem;
    }

    .bc-current {
        max-width: 180px;
    }

    .share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Newsletter mobile */
    .newsletter-inner {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .newsletter-inner h2 {
        font-size: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section {
        padding: 0 16px 40px;
    }

    /* Contact mobile */
    .contact-page {
        padding: 40px 16px 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 1.7rem;
    }

    /* Support mobile */
    .support-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Cookie mobile */
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 16px;
    }

    .cookie-inner p {
        font-size: 0.78rem;
    }

    /* Footer mobile */
    .site-footer .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 6px;
    }

    .footer-links {
        gap: 14px;
    }

    /* Pagination mobile */
    .pagination {
        flex-wrap: wrap;
    }
}

  /* === COMMENTAIRES === */
  .comments-section {
      max-width: 720px;
      margin: 2.5rem auto;
      padding: 1.5rem;
      background: #faf6f0;
      border-radius: 12px;
  }

  .comments-section .section-title {
      font-size: 1.4rem;
      margin: 0 0 1.25rem;
      color: #2c2c2c;
  }

  /* Liste des commentaires */
  .comments-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
  }

  .comments-list .comment {
      background: #fff;
      padding: 1rem 1.25rem;
      border-radius: 8px;
      margin-bottom: .75rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  }

  .comments-list .comment-body {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
  }

  .comments-list .avatar {
      border-radius: 50%;
      flex-shrink: 0;
  }

  .comments-list .comment-author {
      font-weight: 600;
      color: #d9531e;
  }

  .comments-list .comment-meta {
      font-size: .85rem;
      color: #888;
      margin-bottom: .5rem;
  }

  .comments-list .comment-meta a {
      color: #888;
      text-decoration: none;
  }

  .comments-list .reply {
      margin-top: .5rem;
  }

  .comments-list .comment-reply-link {
      color: #d9531e;
      font-size: .9rem;
      text-decoration: none;
  }

  /* Formulaire en grille 2 colonnes */
  .comment-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .comment-form .comment-reply-title,
  .comment-form .comment-notes,
  .comment-form .logged-in-as,
  .comment-form .comment-form-comment,
  .comment-form .comment-form-url,
  .comment-form .comment-form-cookies-consent,
  .comment-form .form-submit {
      grid-column: 1 / -1;
  }

  .comment-form .comment-reply-title {
      font-size: 1.2rem;
      margin: 0;
  }

  .comment-form .comment-notes,
  .comment-form .logged-in-as {
      font-size: .9rem;
      color: #666;
      margin: 0;
  }

  .comment-form label {
      display: block;
      font-size: .9rem;
      font-weight: 500;
      margin-bottom: .35rem;
      color: #444;
  }

  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
      width: 100%;
      padding: .55rem .85rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: inherit;
      font-size: .95rem;
      background: #fff;
      transition: border-color .2s;
      box-sizing: border-box;
  }

  .comment-form input:focus,
  .comment-form textarea:focus {
      outline: none;
      border-color: #d9531e;
  }

  .comment-form textarea {
      min-height: 90px;
      resize: vertical;
  }

  .comment-form .form-submit {
      margin: 0;
  }

  .comment-form .submit {
      background: #d9531e;
      color: #fff;
      border: none;
      padding: .6rem 1.5rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      transition: background .2s;
  }

  .comment-form .submit:hover {
      background: #b8441a;
  }

  .comment-form-cookies-consent {
      font-size: .85rem;
      display: flex;
      gap: .5rem;
      align-items: center;
  }

  /* Responsive : 1 colonne sur mobile */
  @media (max-width: 600px) {
      .comment-form {
          grid-template-columns: 1fr;
      }
  }
