/***   SLIDER CONTAINER   ***/
.e5-news-slider-container {
    margin-right: 30px;
    margin-bottom: 100px;
}

/***   SLIDER ELEMENT   ***/
.e5-news-slider-container .e5-slider-element-container {
    width: 295px;
    padding-bottom: 25px;
    padding-right: 10px;
}

.e5-news-slider-container .e5-slider-element {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

/***   IMAGE   ***/
.e5-news-slider-container .e5-slider-img {
    height: 275px;
}

.e5-news-slider-container .slider-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/***   TEXT   ***/
.e5-news-slider-container .e5-slider-content {
    padding: 25px 25px 30px;
    direction: ltr;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 275px);
}

.e5-news-slider-container .e5-slider-title {
    font-size: 1.3em;
    color: #000000;
    font-weight: bold;
    margin-bottom: 15px;
}

.e5-news-slider-container .e5-slider-text {
    margin-bottom: 15px;
}

/***   BUTTON   ***/
.e5-news-slider-container .e5-slider-button {
    display: flex;
    justify-content: flex-start;
}

.e5-news-slider-container .e5-slider-button a:hover svg path {
    fill: #ffffff;
}

.e5-news-slider-container .e5-slider-button a {
    display: flex;
    width: fit-content;
    align-items: center;
    flex-direction: row;
}

.e5-news-slider-container .e5-slider-button svg {
    margin-right: 10px;
}

/***   NAVIGATION   ***/
.e5-news-slider-container .e5-slider-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    padding-right: 10px;
}

.e5-news-slider-container .arrow-left {
    rotate: 180deg;
}

.e5-news-slider-container .arrow-left, .e5-news-slider-container .arrow-right {
    width: 35px;
    cursor: grab;
}

/*****     MOBILE     *****/
@media screen and (max-width: 549px) {
    /***   CONTAINER   ***/
    .e5-news-slider-container {
        margin-right: 15px;
        margin-bottom: 50px;
    }

    /***   ELEMENT   ***/
    .e5-news-slider-container .e5-slider-element-container {
        width: 300px;
    }

    /***   TEXT   ***/
    .e5-news-slider-container .e5-slider-content {
        padding: 15px 15px 20px;
    }

    .e5-news-slider-container .e5-slider-title {
        margin-bottom: 0;
    }

    /***   BUTTON   ***/
    .e5-news-slider-container .e5-slider-button svg {
        width: 25px;
    }

    /***   NAVIGATION   ***/
    .e5-news-slider-container .e5-slider-navigation {
        gap: 25px;
    }
}

/***   NEWS SLIDER ***/
@media screen and (min-width: 550px) and (max-width: 1550px) {
    .e5-news-slider-container .e5-slider-title {
        min-height: 70px;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1600px) {
    .e5-news-slider-container .e5-slider-element-container {
        width: 400px;
    }
}