/* --- HERO ARTICLE --- */
body.article-page section {
    min-height: auto !important;
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.article-page section.article-hero {
    padding-top: 180px !important;
    padding-bottom: 60px !important;
}

body.article-page .article-container {
    max-width: 860px !important;
    margin: 0 auto 120px !important;
    padding: 0 24px !important;
}

section.article-hero {
    padding-top: 220px;
    padding-bottom: 70px;
    text-align: center;
    background: transparent !important;
    min-height: auto !important;
    height: auto !important;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
}

.back-link {
    display: inline-block;
    color: #9b30ff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-link:hover {
    text-decoration: underline;
}

.article-date {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

section.article-hero h1 {
    max-width: 950px;
    margin: 0 auto;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* --- CONTENU ARTICLE --- */
.article-container {
    max-width: 860px;
    margin: 0 auto 120px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.article-cover {
    width: 100%;
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 55px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- TEXTE ARTICLE --- */
.article-body {
    color: #e5e5e5;
    font-size: 1.15rem;
    line-height: 1.85;
    font-family: Arial, sans-serif;
}

.article-body p {
    margin-bottom: 26px;
}

.article-body h2 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 55px;
    margin-bottom: 22px;
}

.article-body h3 {
    color: #fff;
    font-size: 1.45rem;
    margin-top: 38px;
    margin-bottom: 16px;
}

.article-body strong {
    color: #fff;
}

.article-body a {
    color: #9b30ff;
}

.article-body ul,
.article-body ol {
    margin: 25px 0 30px 25px;
}

.article-body li {
    margin-bottom: 12px;
}

/* Empêche les images cassées ou trop grandes dans le contenu */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 30px 0;
}

/* --- FOOTER ARTICLE --- */
.article-footer {
    text-align: center;
    margin-top: 80px;
}

.article-footer hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
}

.article-footer p {
    color: #aaa;
    margin-bottom: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    section.article-hero {
        padding-top: 160px;
        padding-bottom: 45px;
    }

    section.article-hero h1 {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .article-cover {
        height: 250px;
        border-radius: 18px;
        margin-bottom: 35px;
    }

    .article-body {
        font-size: 1rem;
        line-height: 1.75;
    }
}