:root {
    --news-side: max(24px, calc((100vw - 1600px)/2));
    --news-blue: #152ad3;
    --news-muted: #6a7282
}

.srs-news {
    /* min-height: 2725px; */
    padding: 60px 0 122px;
    background: url(../img/newslist_bg.png) top center no-repeat, linear-gradient(180deg, #edf1f5 0%, #f8fafc 45%, #edf1f5 100%)
}

.srs-news__inner {
    position: relative;
    width: min(1600px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 90px
}

.srs-news__breadcrumb {
    position: absolute;
    top: 27px;
    right: 0;
    color: #8b929e;
    display: flex;
    gap: 11px;
    font-size: 14px;
    line-height: 22px
}

.srs-news__breadcrumb a:hover {
    color: var(--news-blue)
}

.srs-news__title {
    margin: 0;
    color: #000;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 1px
}

.srs-news__tools {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.srs-news__tabs {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 40px
}

.srs-news__tabs button {
    position: relative;
    height: 100%;
    padding: 0;
    border: 0;
    color: #717988;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap
}

.srs-news__tabs button::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 24px;
    left: 50%;
    height: 3px;
    border-radius: 3px;
    background: var(--news-blue);
    transition: .25s
}

.srs-news__tabs button:hover,
.srs-news__tabs button.is-active {
    color: var(--news-blue)
}

.srs-news__tabs button.is-active::after {
    right: 0;
    left: 0
}

.srs-news__search {
    width: 416px;
    height: 56px;
    border: 1px solid #d8d8d8;
    border-radius: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden
}

.srs-news__search:focus-within {
    border-color: #9aa6ba;
    box-shadow: 0 0 0 3px rgba(21, 42, 211, .06)
}

.srs-news__search input {
    min-width: 0;
    height: 100%;
    padding: 0 0 0 26px;
    border: 0;
    outline: 0;
    color: #252a32;
    background: transparent;
    flex: 1;
    font-size: 18px
}

.srs-news__search input::placeholder {
    color: #a0a7b1
}

.srs-news__search button {
    width: 63px;
    height: 100%;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer
}

.srs-news__search button span {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #9ba3ad;
    border-radius: 50%
}

.srs-news__search button span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: #9ba3ad;
    transform: rotate(45deg)
}

.srs-news-feature {
    position: relative;
    height: 500px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden
}

.srs-news-feature[hidden] {
    display: none
}

.srs-news-feature__viewport {
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none
}

.srs-news-feature__track {
    height: 100%;
    display: flex;
    will-change: transform
}

.srs-news-feature__slide {
    min-width: 100%;
    height: 500px;
    padding: 35px 77px 40px 24px;
    display: grid;
    grid-template-columns: 760px 1fr;
    gap: 67px
}

.srs-news-feature__media {
    position: relative;
    height: 425px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5eaf0
}

.srs-news-feature__media>img {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none
}

.srs-news-feature__media::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: #e5eaf0;
    pointer-events: none
}

.srs-news-feature__dots {
    position: absolute;
    z-index: 4;
    bottom: 66px;
    left: 404px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%)
}

.srs-news-feature__dots button {
    width: 9px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: width .25s, background-color .25s
}

.srs-news-feature__dots button.is-active {
    width: 28px;
    background: #fff
}

.srs-news-feature__copy {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.srs-news-feature time {
    color: var(--news-muted);
    font-size: 15px;
    letter-spacing: 1px
}

.srs-news-feature h2 {
    margin: 20px 0 20px;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 1px;
}

.srs-news-feature p {
    margin: 0;
    color: #7c7c80;
    font-size: 16px;
    line-height: 24px
}

.srs-news-feature__more {
    width: 48px;
    height: 48px;
    margin-top: auto;
    border-radius: 6px;
    color: #fff;
    background: #07294c;
    display: grid;
    place-items: center;
    font-size: 25px;
    transition: .25s
}

.srs-news-feature__more img {
    width: 24px;
}

.srs-news-feature__more:hover {
    background: var(--news-blue);
    transform: translate(2px, -2px)
}

.srs-news__status {
    min-height: 58px;
    margin: 30px 0 24px;
    padding: 0 22px;
    border-left: 3px solid var(--news-blue);
    border-radius: 0 6px 6px 0;
    color: #596273;
    background: rgba(255, 255, 255, .72);
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px
}

.srs-news__status:empty {
    display: none
}

.srs-news__status strong {
    margin: 0 5px;
    color: #111827;
    font-size: 18px;
    font-weight: 600
}

.srs-news:not(.has-status) .srs-news-grid {
    margin-top: 30px
}

.srs-news.is-loading .srs-news-grid,
.srs-news.is-loading .srs-news-feature {
    opacity: .48;
    pointer-events: none
}

.srs-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
    transition: opacity .2s
}

.srs-news-card {
    height: 505px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s
}

.srs-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(18, 35, 62, .09)
}

.srs-news-card__media {
    height: 280px;
    overflow: hidden;
    flex: none
}

.srs-news-card__media img {
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: transform .45s
}

.srs-news-card:hover img {
    transform: scale(1.03)
}

.srs-news-card__body {
    min-height: 225px;
    padding: 30px 40px 24px;
    display: flex;
    flex-direction: column
}

.srs-news-card h2 {
    margin: 0;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.srs-news-card__meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--news-muted);
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px
}

.srs-news-card__tag {
    min-width: 74px;
    height: 26px;
    padding: 0 12px;
    border-radius: 13px;
    background: #e4ebf1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0
}

.srs-news-empty {
    grid-column: 1/-1;
    min-height: 450px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    color: #7b8492;
    font-size: 20px
}

.srs-news-pagination {
    height: 106px;
    padding-top: 56px;
    display: flex;
    justify-content: center;
    gap: 12px
}

.srs-news-pagination button {
    min-width: 50px;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #cfd5de;
    border-radius: 3px;
    color: #626b78;
    background: #fff;
    font-size: 15px;
    cursor: pointer
}

.srs-news-pagination button:hover,
.srs-news-pagination button.is-active {
    border-color: var(--news-blue);
    color: var(--news-blue)
}

.srs-news-pagination button.is-active {
    box-shadow: inset 0 0 0 1px var(--news-blue)
}

.srs-news-pagination button:disabled {
    opacity: .42;
    cursor: not-allowed
}

.srs-news-brand {
    position: relative;
    color: #161d2b;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px
}

.srs-news-brand b {
    color: #152ad3;
    font-size: 26px;
    font-style: italic
}

.srs-news-brand small {
    position: absolute;
    top: 22px;
    left: 23px;
    width: 72px;
    font-size: 9px;
    letter-spacing: 6px;
    white-space: nowrap
}

.srs-news-brand--light {
    color: #fff;
    font-size: 25px
}

.srs-news-brand--light b {
    font-size: 39px
}

.srs-news-brand--light small {
    top: 32px;
    left: 34px;
    font-size: 12px
}

@media(max-width:1480px) {
    .srs-news__inner {
        padding: 80px 60px;
    }

    .srs-news-card {
        height: 480px;
    }

    .srs-news-card__body {
        min-height: 200px;
        padding: 20px 40px 24px;
    }

    .srs-news-card h2 {
        font-size: 16px;
    }

    .srs-news-feature__slide {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 42px
    }

    .srs-news-feature__dots {
        left: calc((100% - 119px)*.524 + 24px)
    }

    .srs-news-grid {
        gap: 34px
    }

    .srs-news-card__body {
        padding-right: 30px;
        padding-left: 30px
    }

}

@media(max-width:1024px) {
    .srs-news {
        padding-top: 76px
    }

    .srs-news__inner {
        padding: 70px 20px;
    }

    .srs-news__title {
        font-size: 42px
    }

    .srs-news:not(.has-status) .srs-news-grid {
        margin-top: 0px;
    }

    .srs-news-pagination {
        padding-bottom: 40px;
    }

    .srs-news__tools {
        height: auto;
        padding: 34px 0;
        align-items: stretch;
        flex-direction: column;
        gap: 26px;
        margin-bottom: 0px;
    }

    .srs-news__tabs {
        height: 54px;
        gap: 30px;
        overflow-x: auto
    }

    .srs-news__tabs button {
        font-size: 20px
    }

    .srs-news__tabs button::after {
        bottom: 0
    }

    .srs-news__search {
        width: min(100%, 416px)
    }

    .srs-news-feature {
        height: auto
    }

    .srs-news-feature__viewport,
    .srs-news-feature__track {
        height: auto
    }

    .srs-news-feature__slide {
        height: auto;
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 28px
    }

    .srs-news-feature__media {
        height: auto;
        aspect-ratio: 16/9
    }

    .srs-news-feature__copy {
        min-height: 300px;
        padding: 0
    }

    .srs-news-feature__dots {
        top: calc((100vw - 92px)*.5625);
        bottom: auto;
        left: 50%
    }

    .srs-news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .srs-news-card {
        height: 480px
    }

    .srs-news-card__media {
        height: 250px
    }

    .srs-home-header__nav {
        top: 60px;
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px)
    }
}

@media(max-width:640px) {
    .srs-news {
        min-height: auto;
        padding: 64px 0 70px
    }

    .srs-news__inner {
        width: calc(100% - 32px);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .srs-news__breadcrumb {
        top: 20px;
        font-size: 13px
    }

    .srs-news__title {
        font-size: 34px
    }

    .srs-news__tools {
        padding: 24px 0 28px
    }

    .srs-news__tabs {
        gap: 25px
    }

    .srs-news__tabs button {
        font-size: 17px
    }

    .srs-news__search {
        height: 50px
    }

    .srs-news-feature {
        border-radius: 8px
    }

    .srs-news-feature__slide {
        padding: 12px
    }

    .srs-news-feature__copy {
        min-height: 315px;
        padding: 4px 4px 6px
    }

    .srs-news-feature h2 {
        margin: 14px 0;
        font-size: 24px;
        line-height: 31px;
        letter-spacing: 1px
    }

    .srs-news-feature p {
        font-size: 16px;
        line-height: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .srs-news-feature__dots {
        top: calc((100vw - 56px)*.5625 - 13px)
    }

    .srs-news__status {
        min-height: 54px;
        margin: 24px 0 20px;
        padding: 10px 15px;
        font-size: 14px
    }

    .srs-news__status strong {
        font-size: 16px
    }

    .srs-news-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .srs-news-card {
        height: auto;
        min-height: 430px
    }

    .srs-news-card__media {
        height: auto;
        aspect-ratio: 25/14
    }

    .srs-news-card__body {
        min-height: 190px;
        padding: 24px
    }

    .srs-news-card h2 {
        font-size: 20px;
        line-height: 28px
    }

    .srs-news-pagination {
        overflow-x: auto;
        justify-content: flex-start
    }

    .srs-news-pagination button {
        min-width: 44px;
        height: 44px;
        padding: 0 12px
    }

    .srs-news-brand--light {
        font-size: 17px
    }

    .srs-news-brand--light b {
        font-size: 28px
    }

    .srs-news-brand--light small {
        top: 24px;
        left: 24px;
        font-size: 9px
    }

    .srs-home-footer__logo {
        width: 130px
    }
}

@media(prefers-reduced-motion:reduce) {

    .srs-news-card,
    .srs-news-card img,
    .srs-news-feature__more {
        transition: none
    }
}