.news-center-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    color: #fff;
}

.news-center-hero > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-center-hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 34, .2);
}

.news-center-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    width: min(1320px, 90%);
    margin: auto;
    flex-direction: column;
    justify-content: center;
}

.news-center-hero-content p {
    margin: 0;
    font-size: 18px;
    line-height: 2;
}

.news-center-hero-content h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.67;
}

.news-center {
    width: min(1320px, calc(100% - 104px));
    padding: 60px 0 110px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 45px;
    padding: 0;
}

.news-card {
    position: relative;
    min-width: 0;
    min-height: 550px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .45s cubic-bezier(.2, .7, .2, 1), background-color .3s ease, box-shadow .3s ease;
}

.js .news-card {
    opacity: 0;
    transform: translateY(44px);
}

.js .news-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--news-card-delay, 0s);
}

.news-card > a {
    position: relative;
    display: block;
    min-height: 550px;
    overflow: hidden;
    color: #252525;
}

.news-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin: 0;
    border-radius: 10px 10px 0 0;
    background: #e8e8e8;
}

.news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.news-card-content {
    min-height: 250px;
    padding: 40px 40px 80px;
}

.news-card time {
    display: block;
    color: #bdbdbd;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.news-card h2 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 55px;
    margin: 10px 0 0;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card-rule {
    display: block;
    width: 100%;
    margin: 20px 0;
    border-top: 1px solid #dedede;
}

.news-card-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 72px;
    height: 72px;
    overflow: hidden;
    place-items: end;
}

.news-card-corner::before {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #e1e1e1;
    content: "";
    transition: background-color .3s ease, transform .4s cubic-bezier(.2, .7, .2, 1);
}

.news-card-corner i::before,
.news-card-corner i::after {
    position: absolute;
    right: 16px;
    bottom: 18px;
    width: 14px;
    height: 1px;
    background: #fff;
    content: "";
    transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}

.news-card-corner i::after {
    transform: rotate(90deg);
}

.news-card:hover,
.news-card:focus-within,
.js .news-card.is-visible:hover,
.js .news-card.is-visible:focus-within {
    z-index: 1;
    background: #fff;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .1);
    transform: translateY(-6px);
}

.news-card:hover .news-card-media img,
.news-card:focus-within .news-card-media img {
    transform: scale(1.1);
}

.news-card:hover .news-card-corner::before,
.news-card:focus-within .news-card-corner::before {
    background: var(--red);
    transform: scale(1.12);
}

.news-card:hover .news-card-corner i::before,
.news-card:hover .news-card-corner i::after,
.news-card:focus-within .news-card-corner i::before,
.news-card:focus-within .news-card-corner i::after {
    transform: scale(1.15);
}

.news-card:hover .news-card-corner i::after,
.news-card:focus-within .news-card-corner i::after {
    transform: rotate(90deg) scale(1.15);
}

.news-card > a:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: -3px;
}

.news-video-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(193, 26, 35, .94);
    font-size: 12px;
    font-weight: 700;
}

.news-empty-state {
    grid-column: 1 / -1;
    margin: 0;
    padding: 50px 0;
    color: var(--muted);
    text-align: center;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.news-pagination-page,
.news-pagination-arrow {
    display: grid;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    place-items: center;
    border: 1px solid #dedede;
    border-radius: 50%;
    color: #5d5d5d;
    background: #fff;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 14px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.news-pagination-page:hover,
.news-pagination-arrow:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.news-pagination-page.is-active {
    border-color: var(--red);
    color: #fff;
    background: var(--red);
}

.news-pagination-arrow.is-disabled {
    color: #c8c8c8;
    background: #f7f7f7;
    cursor: not-allowed;
}

.news-pagination-gap {
    min-width: 30px;
    color: #999;
    text-align: center;
}

.news-article {
    width: min(1240px, calc(100% - 104px));
    max-width: none;
    padding: 68px 0 132px;
}

.news-article-header {
    width: min(1100px, 100%);
    margin: 0 auto 60px;
}

.news-article-nav {
    display: flex;
    align-items: center;
    margin: 0 0 34px;
}

.news-article-back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: color .25s ease;
}

.news-article-back .news-article-back-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    color: #333;
    background: #fff;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 20px;
    line-height: 1;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.news-article-back > span:last-child {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    transition: none;
}

.news-article-back:hover {
    color: var(--red);
}

.news-article-back:hover .news-article-back-icon,
.news-article-back:focus-visible .news-article-back-icon {
    border-color: var(--red);
    color: #fff;
    background: var(--red);
    transform: translateX(-3px);
}

.news-article-back:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 5px;
}

.news-article-header h1 {
    max-width: 1080px;
    margin: 0;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.3;
}

.news-article-meta {
    margin: 24px 0 0;
    color: #929292;
    font-size: 15px;
}

.news-article-lead {
    margin: 38px 0 0;
    padding-top: 32px;
    border-top: 1px solid #dedede;
    color: #444;
    font-size: 21px;
    line-height: 1.8;
}

.news-article-cover {
    display: flex;
    width: min(1040px, 100%);
    justify-content: center;
    margin: 0 auto 66px;
}

.news-article-cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
}

.news-article-content.rich-content {
    width: min(980px, 100%);
    margin: auto;
    color: #3f3f3f;
    font-size: 18px;
    line-height: 2;
}

.news-article-content p {
    margin-bottom: 28px;
}

.news-article-content li {
    margin: 12px 0;
}

.news-article-content h2 {
    margin-top: 52px;
    font-size: 30px;
}

.news-article-content h3 {
    margin-top: 40px;
    font-size: 24px;
}

@media (max-width: 960px) {
    .news-center-hero-content {
        width: calc(100% - 48px);
    }

    .news-center {
        width: calc(100% - 48px);
        padding: 50px 0 82px;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }

    .news-article {
        width: calc(100% - 48px);
        padding: 54px 0 92px;
    }

    .news-article-header {
        margin-bottom: 48px;
    }

    .news-article-header h1 {
        font-size: 42px;
    }

    .news-article-cover {
        margin-bottom: 50px;
    }
}

@media (max-width: 560px) {
    .news-center-hero {
        height: 230px;
    }

    .news-center-hero-content {
        width: calc(100% - 38px);
    }

    .news-center-hero-content p {
        max-width: 310px;
        font-size: 14px;
        line-height: 1.7;
    }

    .news-center-hero-content h1 {
        font-size: 36px;
        line-height: 1.55;
    }

    .news-center {
        width: calc(100% - 38px);
        padding: 38px 0 66px;
    }

    .news-list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-card,
    .news-card > a {
        min-height: 0;
    }

    .news-card-media {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .news-card-content {
        min-height: 202px;
        padding: 28px 26px 66px;
    }

    .news-card h2 {
        min-height: 0;
        font-size: 18px;
    }

    .news-card-corner {
        width: 62px;
        height: 62px;
    }

    .news-card-corner::before {
        right: -43px;
        bottom: -43px;
    }

    .news-card-corner i::before,
    .news-card-corner i::after {
        right: 13px;
        bottom: 14px;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 40px;
    }

    .news-pagination-page,
    .news-pagination-arrow {
        min-width: 38px;
        height: 38px;
    }

    .news-article {
        width: calc(100% - 38px);
        padding: 32px 0 68px;
    }

    .news-article-header {
        margin-bottom: 34px;
    }

    .news-article-nav {
        margin-bottom: 26px;
    }

    .news-article-back {
        gap: 11px;
        font-size: 14px;
    }

    .news-article-back .news-article-back-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .news-article-header h1 {
        font-size: 32px;
        line-height: 1.35;
    }

    .news-article-meta {
        margin-top: 17px;
        font-size: 13px;
    }

    .news-article-lead {
        margin-top: 27px;
        padding-top: 24px;
        font-size: 18px;
        line-height: 1.75;
    }

    .news-article-cover {
        margin-bottom: 36px;
    }

    .news-article-content.rich-content {
        font-size: 16px;
        line-height: 1.9;
    }

    .news-article-content h2 {
        margin-top: 40px;
        font-size: 25px;
    }

    .news-article-content h3 {
        margin-top: 34px;
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js .news-card,
    .js .news-card.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .news-card,
    .news-card-media img,
    .news-card-corner::before,
    .news-pagination-page,
    .news-pagination-arrow {
        transition: none;
    }
}
