.section--article-nav {
    margin: 48px auto 0 auto;
    padding: 0 32px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 32px 0;
}

.article-nav__link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-text);
    padding: 16px 0;
    border-radius: 8px;
    transition: background .2s, color .2s;
    flex: 1;
    min-width: 0;
    max-width: 500px;
    cursor: pointer;
}

.article-nav__link:hover {
    text-decoration: none;
    color: var(--color-text);
}

.article-nav__link--prev {
    text-align: left;
}

.article-nav__link--next {
    text-align: right;
    justify-content: flex-end;
}

.article-nav__link--empty {
    flex: 1;
}

/* Fleches */
.article-nav__arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-nav__arrow svg {
    width: 16px;
    height: 16px;
    fill: var(--color-nav);
    transition: transform .2s;
}

.article-nav__link--prev:hover .article-nav__arrow svg {
    transform: translateX(-3px);
}

.article-nav__link--next:hover .article-nav__arrow svg {
    transform: translateX(3px);
}

/* Miniature */
.article-nav__image {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
}

.article-nav__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Texte */
.article-nav__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.article-nav__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-nav);
    font-weight: 600;
}

.article-nav__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-nav__link:hover .article-nav__title {
    color: var(--color-bold);
    text-decoration: underline;
}

/* Categorie / Destination */
.article-nav__cat {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* Mobile */
@media (max-width: 768px) {
    .section--article-nav {
        padding: 0;
    }

    .article-nav {
        flex-direction: column;
        gap: 0;
    }

    .article-nav__link {
        max-width: 100%;
    }

    .article-nav__link--next {
        justify-content: flex-start;
        text-align: left;
    }

    .article-nav__image {
        width: 56px;
        height: 56px;
    }
}
