.news-container {
    background: #FFF;
}

.news-container .news-title {
    font-family: 'Poppins-SemiBold';
    font-size: 80px;
    color: var(--main-blue);
    border-bottom: 0.3px solid #D9D9D9;
    padding: 40px 0px 60px;
    margin: 0px 70px;
    letter-spacing: -3px;
}

.news-container .filter-container {
    padding: 15px 0px;
    margin: 0px 70px;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 0.3px solid #D9D9D9;
}

.news-container .filter-container a:hover {
    opacity: 1 !important;
}

.left-filters .left-child {
    padding: 0 10px;
    color: #000;
}

.left-filters .left-child:first-child {
    padding-left: 0px;
}

.left-child.press {
    opacity: 0.4;
}

.left-child.news {
    opacity: 0.4;
}

.left-child.view-all hr {
    margin: 0px; 
    border: 1px solid var(--main-blue); 
    transition: all 0.3s;
}

.left-child.press hr {
    margin: 0px; 
    border: 1px solid var(--main-blue); 
    transition: all 0.3s; 
    opacity: 0;
}

.left-child.news hr {
    margin: 0px; 
    border: 1px solid var(--main-blue); 
    transition: all 0.3s; 
    opacity: 0;
}

.right-filters {
    cursor: pointer;
}

.right-filters select {
    padding-right: 20px;
    border-bottom: none;
}

.news-container .news-body {
    padding: 40px 70px;
}

.news-body .latest {
    flex-grow: 3;
    flex-basis: 75%;
    padding-right: 20px;
}

.news-body .partnerships {
    flex-grow: 1;
    flex-basis: 25%;
    padding-left: 20px;
}

.news-body .latest-title, 
.news-body .partnerships-title {
    font-family: 'Poppins-Medium';
    font-size: 20px;
    padding-bottom: 30px;
    letter-spacing: -0.2px;
}

.latest-body .focus-item {
    padding: 15px;
    background-color: var(--background-color-1);
}

.focus-item .focus-details {
    padding-left: 25px;
    cursor: pointer;
    
}

.focus-details .date {
    font-family: 'Poppins-Medium';
    font-size: 11px;
    color: var(--accent-color);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.focus-details .title {
    font-family: 'Poppins-Medium';
    font-size: 30px;
    color: var(--foreground-color);
    padding-bottom: 50px;
    letter-spacing: -0.5px;
}

.focus-details .type svg,
.media-info svg {
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.media-info svg {
    margin-right: 6px;
    position: relative;
    top: 3px;
    opacity: 0;
    transition: all 0.3s;
}

.media-type .type-text {
    position: relative;
    left: -12px;
    transition: all 0.3s;
}

.focus-details .type {
    font-family: 'Poppins-Regular';
    font-size: 11px;
    color: var(--foreground-color);
}

.latest-body .article-list {
    padding: 40px 0px;
}

.article-list .media-link:nth-last-child(2) .media-info {
    border-bottom: none;
}

.article-list .media-link {
    padding-bottom: 15px;
}

.media-link .media-date {
    flex-grow: 1;
    flex-basis: 10%;
    font-family: 'Poppins-Medium';
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-right: 15px;
}

.media-link .media-info {
    flex-grow: 9;
    flex-basis: 90%;
    border-bottom: 0.3px solid #707070;
    padding-bottom: 24px;
    cursor: pointer;
}

.media-link .media-info .media-type {
    font-family: 'Poppins-Regular';
    font-size: 11px;
    color: #000;
    padding-bottom: 10px;
    padding-right: 70px;
}

.media-link .media-info .media-title {
    font-family: 'Poppins-Medium';
    font-size: 20px;
    color: #000;
    padding-right: 70px;
    letter-spacing: -0.5px;
}

.partner-container .partner-parent {
    margin-bottom: 30px;
    position: relative;
}

.partner-container .partner {
    align-items: center;
    overflow: hidden;
    position: relative;
}

.partner-parent .logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.partner img {
    width: 100%;
    max-width: 100%;
}

.partner-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0, 79, 92, 1));
    opacity: 0;
}

.partner-container .desc {
    color: #FFFFFF;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 0 5% 10%;
    width: 100%;
    min-height: 50%;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.focus-img {
    overflow: hidden;
}

.focus-img img {
    width: 100vw;
    max-width: 100%;
    transition: all 0.3s;
}

.animation {
    transition: all 0.3s;
}

.article-list .pages {
    justify-content: space-between;
    margin-top: 20px;
}

.pages .prev {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    cursor: pointer;
}

.pages .next {
    font-family: 'Poppins-Regular';
    font-size: 16px;
    cursor: pointer;
}

.mobile {
    display: none;
}

.filter-container.mobile {
    padding: 20px 20px;
    margin: 0;
    border-bottom: none;
    background: var(--background-color);
}

.filter-container.mobile .left-filters {
    justify-content: space-between;
    max-width: 80vw;
}

nav.navigation.pagination {
    width: 100%;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.page-numbers:not(.prev, .next) {
    display: none;
}

.news-body:has(.next.page-numbers) span.inactive.next {
    display: none;
}

.news-body:has(.prev.page-numbers) span.inactive.prev {
    display: none;
}

span.inactive {
    opacity: 0.2;
}

@media screen and (max-width: 1024px) {
    .news-body .partnerships {
        flex-basis: 50%;
    }

    .partner-container .desc {
        font-size: 13x;
    }

    .focus-details .title {
        font-size: 22px;
    }

    .media-link .media-info .media-title {
        font-size: 17px;
    }
}

/* Swiper styles */

.swiper-1 {
    overflow: hidden;
    pointer-events: none;
}

.swiper-1 .desc {
    font-size: 14px;
}

.swiper-1 .logo-img {
    position: absolute;
}

.swiper-1 .slide-button {
    cursor: pointer;
}

.swiper-1 .swiper-button-next,
.swiper-1 .swiper-button-prev {
    position: relative;
    width: fit-content;
    height: fit-content;
    cursor: auto;
    pointer-events: none;
}

.swiper-1 .swiper-button-next svg, 
.swiper-1 .swiper-button-prev svg {
    width: 150px;
    height: 50px;
    margin-top: 0;
    display: block;
    position: relative;
    pointer-events: auto;
}

.swiper-1 .swiper-button-next svg {
    right: calc(-100vw + 290px);
    top: 0;
}

.swiper-1 .swiper-button-prev svg {
    right: calc(-100vw + 475px);
    top: 29px;
}

.swiper-1 .swiper-button-next::after,
.swiper-1 .swiper-button-prev::after {
    content: none;
}

.swiper-1 .swiper-button-next svg, .swiper-1 .swiper-button-prev svg {
    width: 90px;
}

.swiper-1 .swiper-button-prev svg {
    right: 10px;
    top: 29px;
}

.swiper-1 .swiper-button-next svg {
    left: calc(100vw - 120px);
    top: 0;
}

.swiper-1 .mobile-img-container {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 300px;
    margin-bottom: 15px;
}

.mobile-img-container img {
    min-width: 100%;
}

/*****************/

@media screen and (max-width: 767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .mobile.right-filters {
        font-size: 14px;
        position: relative;
        top: 5px;
    }

    .news-body .latest-head {
        justify-content: space-between;
    }

    .news-body .latest-title {
        font-size: 20px;
    }

    .news-container .news-title {
        font-size: 35px;
        margin: 0px 20px;
        border-bottom: none;
    }

    .news-container .news-body {
        display: block;
        padding: 40px 20px;
    }

    .news-body .partnerships {
        margin-left: 0;
        padding-left: 0;
    }

    .news-body .latest {
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 100px;
    }

    .partner-container .desc,
    .partner-container .overlay {
        display: none;
    }

    .partner-parent .logo-img {
        top: 50% !important;
    }

    .latest-body .focus-item {
        display: block;
    }

    .focus-item .focus-details {
        padding-left: 0;
    }

    .focus-details .title {
        font-size: 17px;
        padding-bottom: 30px;
    }

    .focus-img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 40vh;
        margin-bottom: 14px;
        height: fit-content;
    }

    .focus-img img {
        transform: scale(1) !important;
        width: 100%;
        height: auto;
    }

    .article-list .media-link.mobile {
        padding-bottom: 40px;
    }

    .article-list .media-link.mobile .mobile-media-header{
        justify-content: space-between;
        padding-bottom: 15px;
    }

    .mobile-media-date {
        font-family: 'Poppins-Medium';
        color: var(--accent-color);
        font-size: 11px;
        text-transform: uppercase;
    }

    .mobile-media-type {
        font-size: 11px;
        font-family: 'Poppins-Regular';
        color: var(--foreground-color);
    }

    .mobile-media-title {
        font-family: 'Poppins-Medium';
        font-size: 17px;
        color: var(--foreground-color);
    }

    .pages .next,
    .pages .prev {
        font-size: 14px;
    }

    .partner-container .partner {
        justify-content: center;
        max-height: 30vh;
        height: fit-content;
    }

    .partner img {
        height: auto;
    }

    .left-filters .left-child
    {
        font-size: 14px;
    }

    .filter-container.mobile .left-filters
    {
        justify-content: normal;
    }
}