:root {
    --font-base: 'Lexend Deca', sans-serif;
    --heading-color: #16315E;
    --blue-200: #264ABC;
    --black: #000000;
}

body {
    margin: 0;
    font-family: var(--font-base);
}

    body.no-scroll {
        overflow: hidden;
    }

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-block-start: 0;
    margin-block-end: 0;
}

main {
    margin: 40px auto 0;
    max-width: 1440px;
}

.page-title {
    padding: 20px 40px 0;
}

    /* Section Hot News */
    .page-title .heading {
        font-family: "Lexend Deca";
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        color: var(--heading-color);
        text-transform: none;
    }

.hot-news {
    position: relative;
}

    .hot-news a {
        text-decoration: none;
        padding: 24px 40px 40px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

        .hot-news a h2 {
            text-transform: unset;
        }

        .hot-news a:hover h2,
        .list-news__wrapper a:hover h3 {
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 7px;
        }

.list-news__wrapper a:hover h3 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.hot-news .hot-news__thumb {
    height: 507px;
    position: relative;
    overflow: hidden;
}

.hot-news a:hover .hot-news__thumb img.thumnail,
.list-news__wrapper a:hover .list-news__item-thumb img.thumnail {
    transform: scale(1.1);
}

.hot-news a:hover .img__thumb__hover,
.list-news__wrapper a:hover .img__thumb__hover {
    opacity: 1;
}

.img__thumb__hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46.5px;
    height: 42px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .img__thumb__hover .img__thumb__hover-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .img__thumb__hover .img__thumb__hover-content svg {
            transition: transform 0.3s ease-in-out;
        }

            .img__thumb__hover .img__thumb__hover-content svg path {
                stroke: #fff;
            }

    .img__thumb__hover:hover .img__thumb__hover-content svg path {
        stroke: #5FD1C1;
    }

    .img__thumb__hover:hover .img__thumb__hover-content svg {
        transform: rotate(45deg);
    }

.video__thumb__hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-left: 0 !important;
    padding-right: 0 !important;
    height: 0;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.list-news__wrapper a:hover .video__thumb__hover {
    transform: translate(-50%, -50%) scale(0.99);
}

.list-news__wrapper.library a:hover h3 {
    text-decoration: unset;
}

.hot-news .hot-news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hot-news .hot-news__info {
    position: relative;
    padding: 24px 40px;
    background-color: var(--blue-200);
    color: #FFFFFF;
}

    .hot-news .hot-news__info article {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        max-width: 989px;
    }

.hot-news .hot-news__badge {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: #16315E;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.hot-news .hot-news__info-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #FFFFFF;
}

.hot-news .hot-news__info-meta {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-weight: 300;
    color: #C5C5C6;
}

.hot-news .rectangle-sticky-lean {
    position: absolute;
    right: 15.5px;
    bottom: 8.5px;
    z-index: 2;
    width: 186.5px;
    height: 244.5px;
    
}

.hot-news .rectangle-sticky-horizontal {
    position: absolute;
    right: 15px;
    bottom: 8px;
    z-index: -1;
    width: 368px;
    height: 107px;
}

/* Section List News */
.list-news {
    padding: 40px;
}

    .list-news .list-news__nav {
        display: flex;
        flex-direction: row;
        padding: 10px 0;
        align-items: flex-start;
        gap: 40px;
        align-self: stretch;
        color: var(--black);
    }

        .list-news .list-news__nav span {
            padding-top: 10px;
            text-decoration: none;
            cursor: pointer;
            position: relative;
        }

            .list-news .list-news__nav span.active::before {
                background-color: var(--blue-200) !important;
            }

            .list-news .list-news__nav span::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: transparent;
                border-radius: 2px;
                transition: all ease-in 0.4s;
            }

            .list-news .list-news__nav span.active {
                color: var(--blue-200);
            }

            .list-news .list-news__nav span:hover::before {
                background-color: var(--black);
            }

    .list-news .list-news__wrapper {
        padding: 40px 0 80px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
        column-gap: 20px;
    }

    .list-news .list-news__item {
        display: flex;

        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-decoration: none;

    }

        .list-news .list-news__item:visited {
            color: unset;
        }

        .list-news .list-news__item .list-news__item-thumb {
            width: inherit;
            height: 340px;
            position: relative;
            overflow: hidden;
        }

            .list-news .list-news__item .list-news__item-thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

        .list-news .list-news__item .list-news__item__badge {
            position: absolute;
            bottom: 0;
            left: 0;
            max-height: 34px;
            padding: 8px 12px;
            background: #94EEDC;
            color: var(--black);
            font-size: 12px;
            font-weight: 300;
            line-height: 150%;
            width: 80px;
            text-align: center;
        }

            .list-news .list-news__item .list-news__item__badge.event {
                background: #86DE8C;
            }

            .list-news .list-news__item .list-news__item__badge.blog {
                background: #E86042;
            }

            .list-news .list-news__item .list-news__item__badge.album {
                width: fit-content;
                display: flex;
                gap: 10px;
                background: #152967;
                color: #FFFFFF;
                align-items: center;
            }

                .list-news .list-news__item .list-news__item__badge.album img {
                    width: 20px;
                    height: 20px;
                }


    .list-news .list-news__item-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

        .list-news .list-news__item-meta .list-news__item-meta_date {
            color: #434447;
            font-size: 12px;
            font-style: normal;
            font-weight: 300;
            line-height: 150%;
        }

        .list-news .list-news__item-meta h3.list-news__item-title {
            overflow: hidden;
            color: var(--black);
            text-overflow: ellipsis;
            font-style: normal;
            font-size: 16px;
            font-weight: 400;
            line-height: 150%;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            align-self: stretch;
        }

.view-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-more {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-bottom: 1px solid #264ABC;
    width: fit-content;
}

    .view-more:hover {
        color: #264ABC;
    }

        .view-more:hover svg path {
            stroke: #264ABC;
        }

    .view-more svg {
        transition: transform 0.3s ease-in-out;
    }

    .view-more:hover svg {
        stroke: #264ABC;
        transform: rotate(45deg);
    }

.list-news__backdrop,
.list-news__gallery__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.list-news__select.open + .list-news__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.list-news__nav-dropdown {
    position: relative;
    display: none;
}

.list-news__select.open .list-news__select-trigger > img {
    transform: rotate(180deg);
}

.list-news__select {
    position: relative;
    cursor: pointer;
}

.list-news__select-trigger {
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--blue-200);
}

    .list-news__select-trigger img {
        transition: transform 0.3s ease-in-out;
    }

.list-news__select-trigger-content {
    display: flex;
    align-items: center;
    gap: 19px;
}

.list-news__options {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
    z-index: 10000;
    width: calc(100% - 40px);
    box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, 0.25);
    min-height: 200px;
    padding: 20px;
    /* Initial state */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    pointer-events: none;
}

.list-news__options-header {
    display: flex;
    justify-content: space-between;
}

    .list-news__options-header span {
        color: #A2A09E;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        text-transform: uppercase;
    }

    .list-news__options-header svg {
        cursor: pointer;
    }

.list-news__options .options {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.list-news__option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-news__option.active {
    color: #264ABC;
}

.list-news__option:first-child {
    border-radius: 10px 10px 0 0;
}

.list-news__option:last-child {
    border-radius: 0 0 10px 10px;
}

.list-news__select.open .list-news__options {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Gallery */
.list-news__library {
    display: none;
}

.list-news__gallery.open {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
}
    .list-news__gallery.open.album {
        transform: translate(-50%, -45%);
    }

.list-news__gallery {
    position: fixed;
    z-index: 10000;
    /* Initial state */
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    max-width: 1000px;
    max-height: 760px;
    width: 1000px;
    height: 760px;
    top: 50%;
    left: 50%;
}

    .list-news__gallery.single,
    .list-news__gallery.single .gallery__swiper,
    .list-news__gallery.single .gallery__swiper .swiper-slide {
        height: 600px;
    }

    .list-news__gallery.album,
    .list-news__gallery.album .gallery__swiper .swiper-slide {
        height: 500px !important;
    }

    .list-news__gallery.video,
    .list-news__gallery.video .gallery__swiper,
    .list-news__gallery.video .gallery__swiper .swiper-slide {
        height: 500px !important;
    }

        .list-news__gallery.video .video__thumb__hover {
            width: 120px;
            height: 120px;
        }

        .list-news__gallery.video .swiper-button-close {
            top: calc(50% - 225px);
        }

    .list-news__gallery.single .swiper-button-close {
        top: calc(50% - 300px);
    }

    .list-news__gallery.open + .list-news__gallery__backdrop {
        opacity: 1;
        pointer-events: auto;
    }

.gallery__swiper {
    max-width: 800px;
    max-height: 760px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery__swiper {
    max-width: 800px;
    max-height: 760px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .gallery__swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery__swiper .swiper-slide {
        width: 800px;
        height: 600px;
        aspect-ratio: 4/3;
    }

    .gallery__swiper .swiper-pagination {
        position: unset;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
    }

.swiper-pagination__gallery_wrapper {
    width: unset !important;
    height: unset !important;
    opacity: 1 !important;
}

.swiper-pagination__gallery {
    width: 159px;
    height: 120px;
    aspect-ratio: 53/40;
    position: relative;
}

    .swiper-pagination__gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination__gallery::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
    }

    .swiper-pagination__gallery img.eye {
        width: 24px;
        height: 24px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

.swiper-pagination-bullet-active .swiper-pagination__gallery img.eye {
    display: block;
}

.swiper-pagination-bullet-active .swiper-pagination__gallery::before {
    display: block;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    right: 0;
    top: calc(50% - 80px);
    display: none;
    text-align: right;
}

.swiper-button-prev {
    left: 0;
    top: calc(50% - 80px);
    display: none;
}

.list-news__gallery.open.album .swiper-button-prev,
.list-news__gallery.open.album .swiper-button-next,
.list-news__gallery.open.album .swiper-pagination {
    display: block;
/*    width: 100%;*/
}

.swiper-button-close {
    width: 56px;
    height: 56px;
    border-radius: 400px;
    position: absolute;
    background-color: #16315E;
    right: 0;
    top: calc(50% - 380px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* End Gallery */

/* News details */
.news-detail {

    width: 720px;
    position: relative;
    margin: 0 auto;
    padding-bottom:30px;
}

    .news-detail .news-detail_back-btn {
        width: 153.134px;
        height: 56px;
        position: fixed;
        left: 40px;
        cursor: pointer;
        z-index: 9;
    }

        .news-detail .news-detail_back-btn .desktop {
            display: block;
        }

        .news-detail .news-detail_back-btn .mobile {
            display: none;
        }

.news-detail_back-btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 100%;
}

    .news-detail_back-btn-text img {
        transition: transform 0.3s ease-in-out;
    }

    .news-detail_back-btn-text:hover img {
        transform: rotate(45deg);
    }

.news-detail h1.news-detail_heading {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 13px;
    text-transform: none;
}

.news-detail_metadata {
    display: flex;
    justify-content: space-between;
}

.news-detail_metadata-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

    .news-detail_metadata-item label {
        color: #A2A09E;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .news-detail_metadata-item span {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .news-detail_metadata-item .share-icons {
        display: flex;
        gap: 24px;
    }

        .news-detail_metadata-item .share-icons a {
            display: flex;
            align-items: center;
        }

        .news-detail_metadata-item .share-icons .icon-link {
            width: 20px;
            height: 20px;
        }

            .news-detail_metadata-item .share-icons .icon-link img {
                width: 100%;
                height: 100%;
            }

.news-detail_thumbnail {
    height: 540px;
    margin: 24px 0 50px;
    position: relative;
}

    .news-detail_thumbnail img.thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-detail_thumbnail .rectangle-sticky-lean {
        position: absolute;
        right: -69.5px;
        bottom: -16px;
        z-index: 2;
        width: 186.5px;
        height: 244.5px;
    }

    .news-detail_thumbnail .rectangle-sticky-horizontal {
        position: absolute;
        right: -69.5px;
        bottom: -16px;
        z-index: -1;
        width: 368px;
        height: 107px;
    }

/*.news-detail_image-wrapper {*/
/*    height: 540px;*/
/*    margin: 40px 0;*/
    /*position: relative;*/
/*}*/

    .news-detail_image-wrapper img {
        width: 100%;

        height: 540px;
        margin: 40px 0;
        object-fit: cover;
    }

    .news-detail_image-wrapper span.news-detail_image-caption {
        position: absolute;
        bottom: 24px;
        left: 24px;
        line-height: 150%;
        color: #FFF;
    }

.news-detail__quote {
    padding-left: 24px;
    margin: 40px 0;
    border-left: 2px solid var(--blue-200);
}

    .news-detail__quote p {
        font-weight: 600;
        margin-bottom: 24px;
    }

.news-detail__quote-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .news-detail__quote-author .avatar {
        width: 48px;
        height: 72px;
        aspect-ratio: 2/3;
    }

    .news-detail__quote-author .avatar-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
    }

    .news-detail__quote-author .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin :0 !important;
    }

    .news-detail__quote-author .info {
        display: flex;
        flex-direction: column;
    }

    .news-detail__quote-author .position {
        color: #434447;
        font-weight: 300;
        line-height: 150%;
    }

    .news-detail__quote-author .name {
        font-weight: 400;
        line-height: 150%;
    }

.news-detail_actions {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-top: 24px;
    border-top: 1px solid #E8EAEF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .news-detail_actions > span {
        cursor: pointer;
        color: #434447;
    }

.news-detail_action-items {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .news-detail_action-items .icon {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .news-detail_action-items img:hover {
        filter: invert(33%) sepia(91%) saturate(7480%) hue-rotate(218deg) brightness(80%) contrast(60%);
    }

.news-detail_action-item.copy-link:hover {
    color: #264ABC;
}

    .news-detail_action-item.copy-link:hover svg path {
        stroke: #264ABC;
    }

.news-detail_action-item.copy-link {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    color: #434447;
}

    .news-detail_action-item.copy-link .copy-text {
        transition: width 1s ease;
        display: inline-block;
        overflow: hidden;
        vertical-align: top;
    }

    .news-detail_action-item.copy-link .copy-text-inner {
        display: inline-block;
        white-space: nowrap;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .news-detail_action-item.copy-link.copied .copy-text {
        color: #264ABC;
        opacity: 1;
    }

    .news-detail_action-item.copy-link.copied svg path {
        stroke: #264ABC;
    }

.news-related__wrapper {
    background: #f7f6f5;
}

.news-related {
    padding: 80px 40px;
    margin: 0 auto;
    max-width: 1440px;
}

    .news-related h2.news-related_title {
        color: #000;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        text-transform: none;
    }

    .news-related .list-news__wrapper {
        padding: 40px 0 0;
    }

.news-related_pagination {
    display: none;
}

.related-news__swiper {
    display: none;
}

/* Small desktop / large tablet */
@media (max-width: 1200px) {
}

/* Tablet */
@media (max-width: 1024px) {
    .page-title {
        padding: 20px 20px 0;
    }

    /* Section Hot News */
    .hot-news a {
        padding: 20px;
    }

    .hot-news .hot-news__info {
        padding: 20px;
    }

    /* Section List News */
    .list-news {
        padding: 20px;
    }

        .list-news .list-news__wrapper {
            grid-template-columns: repeat(2, 1fr);
        }

    .rectangle-sticky-lean {
        display: none;
    }

    .rectangle-sticky-horizontal {
        display: none;
    }
}

/* Landscape phones / small tablets */
@media (max-width: 768px) {
    main {
        margin: 0px auto 0;
    }
    .gallery__swiper .swiper-pagination {
        position: absolute;
    }
    .album .gallery__swiper .swiper-slide img {
        height: auto;
        position: absolute;
        bottom: 165px;
    }
    /* Section Hot News */
    .hot-news .hot-news__info {
        padding: 12px;
    }

    .hot-news .hot-news__thumb {
        height: 300px;
    }

    .hot-news .hot-news__info-title {
        font-size: 18px;
    }

    .hot-news .hot-news__info-meta {
        width: 100%;
        justify-content: space-between;
        color: #F7F6F5;
    }

    /* Section List News */
    .list-news__nav-dropdown {
        display: block;
    }

    .list-news .list-news__wrapper {
        padding: 24px 0 40px;
        grid-template-columns: 1fr;
    }

    .list-news .list-news__nav {
        display: none;
    }

    .list-news .list-news__item {
        width: unset;
        height: unset;
    }

        .list-news .list-news__item .list-news__item-thumb {
            width: 100%;
            height: 300px;
        }

    /* News detail */
    .news-detail {
        padding: 16px 20px 40px;
        width: unset;
    }

        .news-detail .news-detail_back-btn .desktop {
            display: none;
        }

    .news-detail_back-btn .news-detail_back-btn-text span {
        display: none;
    }

    .news-detail .news-detail_back-btn .mobile {
        display: block;
    }

    .news-detail .news-detail_back-btn {
        position: relative;
        left: 0;
        top: 0;
        width: 56px;
        margin-bottom: 20px;
    }

    .news-detail h1.news-detail_heading {
        font-size: 24px;
        margin: 40px 0 40px;
    }

    .news-detail_thumbnail {
        margin: 20px 0 30px;
        height: 300px;
    }
        
    .news-detail_image-wrapper img {
        height: unset;
    }

    .news-detail_actions {
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .news-related h2.news-related_title {
        font-size: 32px;
    }

    .news-related .list-news__wrapper {
        padding: 40px 0;
    }

    .related-news__swiper {
        display: block;
        padding: 40px 0;
    }

    .list-news__wrapper.desktop {
        display: none;
    }

    .news-related .swiper-pagination {
        position: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
/*        display: none;*/
    }

        .news-related .swiper-pagination .swiper-pagination-bullet {
            width: 40px;
            height: 2px;
            background-color: #CFCECB;
            border-radius: 0 !important;
        }

        .news-related .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #605F5E;
            border-radius: 0 !important;
        }

    /* Gallery */
    .gallery__swiper {
        max-width: calc(100% - 40px);
        max-height: 300px;
    }

    .list-news__gallery {
        width: 100%;
    }

    .gallery__swiper .swiper-slide {
        height: 300px;
    }

    .list-news__gallery.single,
    .list-news__gallery.single .gallery__swiper,
    .list-news__gallery.single .gallery__swiper .swiper-slide,
    .list-news__gallery.video,
    .list-news__gallery.video .gallery__swiper,
    .list-news__gallery.video .gallery__swiper .swiper-slide {
        height: 300px !important;
    }

    .list-news__gallery.open.album .swiper-button-prev,
    .list-news__gallery.open.album .swiper-button-next {
        display: none;
    }

    .swiper-pagination__gallery_wrapper {
        width: calc(100% / 3 - 10px) !important;
    }

    .swiper-pagination__gallery {
        width: 100% !important;
        height: 90px;
    }

    .list-news__gallery.video .video__thumb__hover {
        width: fit-content;
        height: 90px;
    }

    .swiper-button-close {
        width: 24px;
        height: 24px;
        right: 20px;
        top: calc(50% - 180px) !important;
    }

        .swiper-button-close svg {
            width: 8px;
            height: 8px;
        }

    .list-news__gallery.album .swiper-button-close {
        top: calc(50% - 230px) !important
    }

    .gallery__swiper .swiper-pagination {
        margin-top: 12px;
        gap: unset;
    }

    .list-news__gallery.album .gallery__swiper {
        max-height: 440px;
    }
}

/* Mobile */
@media (max-width: 600px) {
}


@media (max-width: 440px) {
    .list-news .list-news__item .list-news__item-thumb {
        width: unset;
    }
}

/* Small phones */
@media (max-width: 375px) {
}


figure {
    position: relative;
    display: inline-block;
    margin: 0;
}

    figure::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 15%;
        pointer-events: none;
        z-index: 1;
        -webkit-backdrop-filter: blur(6px);
        background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    }

    figure img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 !important;
    }

    figure figcaption {
        position: absolute;
        bottom: 20px;
        left: 18px;
        right: 8px;
        padding: 4px 8px;
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        z-index: 2;
    }
