.carousel-articles-main {
    margin-left: 15vw;
    margin-right: 15vw;

    border-top: solid 1px var(--main-color);
    border-bottom: solid 1px var(--main-color);

    padding-top: 10px;
    padding-bottom: 10px;

    margin-bottom: 60px;

    display: flex;
    align-items: center;
    gap: 60px;

    position: relative;

    /* IMPORTANT */
    overflow: visible;
}

.carousel-articles-main img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================
   CAROUSEL
========================= */

.carousel-articles-main-box {
    width: 100%;
    overflow: hidden;
    min-width: 0;
}

.carousel-articles-main-in {
    min-width: 0;
}

.carousel-simple-box {
    width: 100%;
    box-sizing: border-box;
}

/* =========================
   LINKS
========================= */

.link-carousel-article {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;

    transition: ease 0.3s;

    display: block;
}

.link-carousel-article:hover {
    color: var(--main-color);
}

/* =========================
   NAVIGATION
========================= */

.nav-carousel-article {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.button-owl {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.button-owl path {
    transition: ease 0.3s;
}

.button-owl:hover path {
    stroke: var(--main-color);
}

/* =========================
   RESPONSIVE
========================= */

@media only screen and (max-width: 1650px) {

    .carousel-articles-main {
        margin-left: 5vw;
        margin-right: 5vw;
    }

}

/* =========================
   TABLET / MOBILE
========================= */

@media only screen and (max-width: 1024px) {

    .carousel-articles-main {

        margin-left: 0;
        margin-right: 0;

        flex-direction: column;

        margin-top: 60px;

        align-items: stretch;

        gap: 25px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .carousel-articles-main img {

        background: var(--bg-color);

        width: max-content;

        max-width: 100%;

        margin: -45px auto 0;

        position: relative;
        z-index: 2;
    }

    .carousel-articles-main-box {

        width: 100%;

        overflow: hidden;

        text-align: center;
    }

    .link-carousel-article {

        font-size: 22px;

        line-height: 1.1;

        text-align: center;

        word-break: break-word;
    }

    .nav-carousel-article {

        background: var(--bg-color);

        width: max-content;

        margin: 0 auto -30px;

        padding: 9px;

        position: relative;
        z-index: 2;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media only screen and (max-width: 600px) {

    .carousel-articles-main {
        gap: 15px;
    }

    .link-carousel-article {
        font-size: 18px;
    }

}