.breaking-news-slider__content {
    display: flex;
    flex-direction: column;
}

.breaking-news-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
    background-color: white;
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.news {
    display: flex;
    flex-direction: row;
    padding: 0 10px 0 20px;
    align-items: center;
    background-color: white;

}

/* Content */
.news-content {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 21px;
}

.news-title {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    font-size: 40px;
}

.news-date {
    display: flex;
    flex-direction: column;
    margin-right: 60px;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    text-align: center;
    font-weight: 500;
    justify-content: flex-start;
    align-items: center;
}

.news-date-day {
    font-size: 58px;
    display: flex;
    margin-left: 5px;
    flex-direction: column;
    justify-content: start;
}

.news-date-month {
    font-size: 38px;
    margin-top: -20px;
    text-transform: uppercase;
}

.url-container {
    display: flex;
    flex-direction: row-reverse;
    background-color: white;
}

.new-url {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    color: black;
    margin-top: 20px;
    max-width: 200px;
}

a.new-url {
    color: black;
    text-decoration: underline;
}

.heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 10px;

}


/* Navigation */
.arrow-left, .arrow-right {
    width: 30px;
    cursor: pointer;
}

.arrow-left {
    margin-right: 10px;
}

.arrow-right {
    margin-left: 10px;
}

.news-nav {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.arrow-right, .arrow-left {
    width: 20px;
}

.arrow-left {
    transform: rotate(180deg);
}

.arrow-left-container {
    margin-right: 20px;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .news {
        flex-direction: column;
        text-align: start;
        align-items: start;
        padding: 0 20px 0 20px;
    }

    .news-date {
        display: flex;
        flex-direction: column;
        font-family: var(--e-global-typography-primary-font-family), Sans-serif;
        text-align: center;
        font-weight: 800;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: -60px;
    }

    .news-date-day {
        font-size: 25px;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .news-date-month {
        font-size: 25px;
        margin-top: -10px;
        text-transform: uppercase;
    }

    .news-title {
        font-size: 32px;
        margin-left: 62px;
        font-weight: 500;
    }

    .news-content {
        margin-top: 30px;
    }

    .heading {
        padding: 0;
    }

    .widget-title {
        padding: 0 !important;
        margin-top: 24px;
    }

}
