
.section--other-articles {
    padding: 80px 0;
    position: relative;
}

/* HEADER */
.section--other-articles .section__header {
    text-align: left;
    width: 100%;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.section--other-articles .section__header-text {
    flex: 1 1 auto;
    min-width: 0;
}

.section--other-articles .section__subtitle {
    margin: 0 0 12px;
    color: var(--color-nav);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section--other-articles .section__title {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.section--other-articles .section__introduction {
    color: var(--color-text);
    line-height: 1.6;
    opacity: 0.85;
    width: calc(100% - 50px);
}
.section--other-articles .section__introduction p {
    max-width: none;
}
.section--other-articles .section__footer {
    width:100%;
    margin:40px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section--other-articles .section__cta {
font-weight: 400;
    text-decoration: none;
    background: var(--color-nav);
    color: var(--color-white);
    padding: 0 24px;
    font-size: 18px;
    border-radius: 4px;
    line-height: 48px;
    display:inline-block;
}
.section--other-articles .section__cta:hover {
    text-decoration: none;
    background: var(--color-bold);
    color: var(--color-white);
}

/* CONTROLS (placés à droite du container) */
.section--other-articles .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section--other-articles .section__controls {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
}

.section--other-articles .section__btn {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.25s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.section--other-articles .section__btn--next {
    transform-origin: center center;
    transform: rotate(180deg);
}

.section--other-articles .section__btn svg {
    width: 12px;
}

.section--other-articles .section__btn svg * {
    fill: var(--color-nav);
}

.section--other-articles .section__btn:hover {
    border-color: var(--color-bold);
}

.section--other-articles .section__btn:hover svg * {
    fill: var(--color-bold);
}

.section--other-articles .section__btn:hover {
    color: var(--color-nav);
}

.section--other-articles .section__slider-wrapper {
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}
.section__slider-wrapper::-webkit-scrollbar {
    display: none;
}
.section--other-articles .section__slider {
    display: flex;
    gap: 16px;
    transition: transform .25s;
}

.section--other-articles .section__card {
    position: relative;
    min-width: calc((100% - 32px) / 3);
    overflow: hidden;
}

.section--other-articles .section__card a {
    display: block;
    width: 100%;
        color:var(--color-text);
    text-decoration:none;
}

.section--other-articles .section__card-figure {
    width: 100%;
    aspect-ratio: 36 / 24;
    overflow: hidden;
}


.section--other-articles .section__card-bg {
    width: 100%;
    height: 100%;
}

.section--other-articles .section__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section--other-articles .section__card-content {
    padding:  16px 8px;
}
.section--other-articles .section__card-date {
    font-size: 12px;
    margin: 0 0 8px;
    opacity: 0.6;
}

.section--other-articles .section__card-title {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.section--other-articles .section__card-excerpt {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}
.section--other-articles .section__card-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 16px 0 0 0;
}
.section--other-articles .section__card-link {
    font-size: 12px;
    text-decoration: none;
}

.section--other-articles .section__card-link:hover {
    text-decoration: underline;
}

.section--other-articles .section__card a:hover .section__card-title{
    text-decoration: underline;
}




@media all and (max-width: 1024px) {
    .section--other-articles .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section--other-articles .section__header {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .section--other-articles .section__card-title {
        font-size: 20px;
    }

    .section--other-articles .section__introduction {
        width: 100%;
        margin: 0;
    }

    .section--other-articles .section__card {
        min-width: calc((100% - 16px) / 2);
    }

    .section--other-articles .section__controls {
        align-self: flex-end;
        margin-top: 8px;
    }
}

@media all and (max-width: 768px) {
    .section--other-articles .section__title {
        font-size: 24px;
    }
    .section--other-articles .section__card-title {
        font-size: 18px;
    }
    .section--other-articles .section__card {
        min-width: 100%;
    }
}
