/* --- STYLE ARTICLE (Page Seule) --- */
.article-container {
    max-width: 1000px;
    /* Plus étroit pour une lecture confortable */
    margin: 40px auto;
    padding: 0 20px;
}

.article-hero img {
    width: 100%;
    border-radius: 25px;
    height: 450px;
    object-fit: cover;
    margin-bottom: 30px;
}

.article-main-title {
    font-size: 32px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    /* Pousse les blocs aux extrémités */
    width: 100%;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.nav-wrapper {
    flex: 1;
    /* Chaque bloc prend 50% de la largeur */
    max-width: 50%;
}

.prev-box {
    text-align: left;
}

.next-box {
    text-align: right;
}

.nav-link {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.nav-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #64a71c;
    /* Ton orange SunnyFlex */
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.nav-title {
    display: block;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    line-height: 1.4;
}

.nav-link:hover .nav-title {
    color: #64a71c;
}

/* Version Mobile : on les empile l'un sur l'autre */
@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
        gap: 30px;
    }

    .nav-wrapper {
        max-width: 100%;
        text-align: center !important;
    }
}