.news-page {
    min-height: 100%;
    background: #FFFFFF;
}

.news-intro,
.article-title-band {
    padding: 144px 0 52px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5EAF0;
}

.industry-news-page .news-intro,
.notices-page .news-intro {
    min-height: 330px;
}

.industry-news-page .news-hero-stack,
.notices-page .news-hero-stack {
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.industry-news-page .news-hero-stack {
    background-image:
        linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.74) 100%),
        url("../image/news/industry-news-intro-bg-20260811.avif");
}

.notices-page .news-hero-stack {
    background-image:
        linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.74) 100%),
        url("../image/news/news-notice-intro-bg-20260811.avif");
}

.news-intro .module-body-g {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.news-intro h1,
.article-title-band h1 {
    max-width: 860px;
    margin: 12px 0 14px;
    color: #182437;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.22;
}

.industry-news-page .news-intro h1 {
    margin-top: 0;
}

.industry-news-page .news-intro,
.industry-news-page .news-topic-nav,
.notices-page .news-intro,
.notices-page .news-topic-nav {
    background: transparent;
    border-bottom: 0;
}

.industry-news-page .news-intro .module-body-g,
.notices-page .news-intro .module-body-g {
    justify-content: center;
    text-align: center;
}

.industry-news-page .news-intro p,
.notices-page .news-intro p {
    margin-right: auto;
    margin-left: auto;
}

.news-intro p {
    max-width: 660px;
    margin: 0;
    color: #667386;
    font-size: 17px;
    line-height: 1.8;
}

.news-kicker,
.section-label {
    color: #234BED;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
}

.news-hub-nav {
    background: #FFFFFF;
    border-bottom: 1px solid #E5EAF0;
}

.news-hub-nav .module-body-g {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 66px;
}

.news-topic-nav .module-body-g {
    justify-content: center;
}

.news-hub-nav a {
    position: relative;
    color: #657185;
    font-size: 16px;
    line-height: 66px;
}

.news-hub-nav a:hover,
.news-hub-nav a.is-current {
    color: #234BED;
}

.news-hub-nav a.is-current:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #234BED;
}

.news-listing {
    padding-top: 60px !important;
    padding-bottom: 88px !important;
    background: #F5F7FA !important;
}

.news-listing-head,
.notice-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.news-listing-head {
    justify-content: flex-start;
}

.news-topic-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-topic-list a {
    padding: 8px 14px;
    color: #6A778A;
    font: inherit;
    background: #FFFFFF;
    border: 1px solid #E0E7EF;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1.3;
}

.news-topic-list a:hover,
.news-topic-list .is-active {
    color: #234BED;
    border-color: #BFCFFF;
    background: #EEF3FF;
}

.news-topic-list a:focus-visible {
    outline: 2px solid #234BED;
    outline-offset: 2px;
}

.article-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.article-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E1E7EF;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-card:hover {
    border-color: #B9C9F8;
    box-shadow: 0 18px 32px rgba(22, 39, 76, 0.1);
    transform: translateY(-4px);
}

.article-card-grid .article-card {
    transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card.is-filtered-out {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98);
}

.article-card.is-filtered-in {
    animation: article-card-filter-in 0.24s ease both;
}

@keyframes article-card-filter-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card-media {
    display: block;
    height: 202px;
    overflow: hidden;
    background: #E8EDF5;
}

.article-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-media img {
    transform: scale(1.04);
}

.article-card-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7B8798;
    font-size: 13px;
}

.article-meta span,
.notice-tag {
    color: #234BED;
    font-size: 13px;
    font-weight: 600;
}

.article-card h2,
.notice-row h2 {
    margin: 13px 0 12px;
    color: #1D2939;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
}

.article-card h2 a:hover,
.notice-row h2 a:hover {
    color: #234BED;
}

.article-card p,
.notice-row p {
    margin: 0;
    color: #697689;
    line-height: 1.75;
}

.article-link {
    color: #234BED;
    font-weight: 600;
}

.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: auto;
    padding-top: 18px;
    color: #7B8798;
    font-size: 13px;
}

.article-link:after {
    content: "->";
    margin-left: 8px;
}

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

.news-pagination a,
.news-pagination span {
    min-width: 36px;
    padding: 9px 12px;
    color: #657185;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E0E7EF;
    border-radius: 4px;
}

.news-pagination span {
    color: #FFFFFF;
    background: #234BED;
    border-color: #234BED;
}

.notices-listing {
    padding-top: 60px !important;
    padding-bottom: 88px !important;
    background: #F5F7FA !important;
}

.notice-list-head > span {
    color: #8290A3;
}

.notice-list {
    background: #FFFFFF;
    border-top: 1px solid #E1E7EF;
}

.notice-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 86px;
    gap: 28px;
    align-items: center;
    padding: 26px 24px;
    border: 1px solid #E1E7EF;
    border-top: 0;
}

.notice-row > time {
    display: grid;
    gap: 3px;
    color: #7B8798;
}

.notice-row > time strong {
    color: #1D2939;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.notice-row > time span {
    font-size: 13px;
}

.notice-row h2 {
    margin-top: 7px;
    margin-bottom: 6px;
}

.notice-arrow {
    color: #234BED;
    font-weight: 600;
    text-align: right;
}

.article-title-band {
    padding-bottom: 58px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: #8290A3;
}

.article-breadcrumb a {
    color: #526174;
}

.article-breadcrumb a:hover {
    color: #234BED;
}

.article-title-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 416px;
    gap: 76px;
    align-items: center;
}

.article-title-wrap h1 {
    max-width: 760px;
    margin-top: 12px;
    font-size: 42px;
}

.article-title-wrap p {
    max-width: 730px;
    margin: 0;
    color: #667386;
    font-size: 17px;
    line-height: 1.85;
}

.article-title-wrap img {
    display: block;
    width: 100%;
    height: 244px;
    object-fit: cover;
    border-radius: 8px;
}

.article-byline {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    color: #7B8798;
}

.article-reading {
    padding-top: 64px !important;
    padding-bottom: 90px !important;
    background: #FFFFFF !important;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 760px) 280px;
    gap: 116px;
    align-items: start;
}

.article-body {
    color: #435066;
    font-size: 17px;
    line-height: 1.95;
}

.article-body p {
    margin: 0 0 22px;
}

.article-body .article-lead {
    padding-bottom: 26px;
    color: #334155;
    font-size: 21px;
    line-height: 1.8;
    border-bottom: 1px solid #E4E9F0;
}

.article-body h2 {
    margin: 38px 0 16px;
    color: #1D2939;
    font-size: 26px;
    line-height: 1.4;
}

.article-body blockquote {
    margin: 32px 0;
    padding: 18px 24px;
    color: #29427D;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
    background: #F3F6FF;
    border-left: 4px solid #234BED;
}

.article-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #E4E9F0;
}

.article-actions .button-g + .button-g {
    margin-left: 0;
}

.article-actions .button-g {
    min-width: 144px;
    height: 46px;
}

.article-aside {
    padding-top: 10px;
}

.article-aside-block + .article-aside-block {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #E4E9F0;
}

.article-aside-block > span {
    display: block;
    margin-bottom: 14px;
    color: #1D2939;
    font-size: 16px;
    font-weight: 700;
}

.article-aside-block a {
    display: block;
    padding: 8px 0;
    color: #697689;
    line-height: 1.55;
}

.article-aside-block a:hover {
    color: #234BED;
}

@media (max-width: 900px) {
    .news-intro,
    .article-title-band {
        padding-top: 112px;
    }

    .industry-news-page .news-intro,
    .notices-page .news-intro {
        min-height: 300px;
    }

    .industry-news-page .news-hero-stack,
    .notices-page .news-hero-stack {
        background-position: 64% center;
    }

    .article-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-title-wrap,
    .article-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .article-title-wrap img {
        height: 300px;
    }

    .article-shell {
        max-width: 760px;
    }

    .article-aside {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .article-aside-block + .article-aside-block {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 520px) {
    .news-intro,
    .article-title-band {
        padding-top: 100px;
        padding-bottom: 36px;
    }

    .industry-news-page .news-intro,
    .notices-page .news-intro {
        min-height: 260px;
    }

    .industry-news-page .news-hero-stack,
    .notices-page .news-hero-stack {
        background-image:
            linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%),
            var(--news-intro-bg);
    }

    .industry-news-page .news-hero-stack {
        --news-intro-bg: url("../image/news/industry-news-intro-bg-20260811.avif");
    }

    .notices-page .news-hero-stack {
        --news-intro-bg: url("../image/news/news-notice-intro-bg-20260811.avif");
    }

    .news-intro h1,
    .article-title-band h1,
    .article-title-wrap h1 {
        font-size: 32px;
    }

    .news-intro p,
    .article-title-wrap p {
        font-size: 16px;
    }

    .news-hub-nav .module-body-g {
        gap: 24px;
    }

    .news-listing-head {
        display: block;
    }

    .news-topic-list {
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .news-pagination {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .article-card-grid,
    .article-aside {
        grid-template-columns: 1fr;
    }

    .article-card {
        min-height: 0;
    }

    .article-card-copy {
        align-items: center;
        text-align: center;
    }

    .article-card-footer {
        text-align: left;
    }

    .notice-row {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 18px;
        padding: 22px 18px;
    }

    .notice-row > time strong {
        font-size: 28px;
    }

    .notice-row h2 {
        font-size: 18px;
    }

    .notice-arrow {
        display: none;
    }

    .article-title-wrap img {
        height: 220px;
    }

    .article-reading {
        padding-top: 44px !important;
        padding-bottom: 60px !important;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body .article-lead {
        font-size: 18px;
    }

    .article-body h2 {
        font-size: 23px;
    }

    .article-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .article-actions .button-g {
        width: 100%;
    }
}
