@font-face {
    font-family: "ICC Source Han";
    src: url("../fonts/icc-home/SourceHanSansCN-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ICC Source Han";
    src: url("../fonts/icc-home/SourceHanSansCN-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ICC Roboto";
    src: url("../fonts/icc-home/Roboto-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #071a34;
    --navy-2: #082450;
    --blue: #0b4aa2;
    --blue-2: #1d73e8;
    --gold: #e8ad28;
    --red: #dc4a47;
    --text: #0b2d63;
    --muted: #68788e;
    --line: rgba(30, 77, 145, 0.16);
    --shell: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #f4f7fb;
    font-family: "ICC Source Han", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.icc-page {
    min-width: 320px;
    overflow: hidden;
    background: #fff;
}

.page-shell {
    width: min(var(--shell), calc(100% - 76px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 72px;
    color: #102b5b;
    transition: background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
    background: rgba(236, 244, 255, 0.9);
    box-shadow: 0 12px 30px rgba(5, 23, 55, 0.12);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    font-weight: 700;
}

.brand-mark-academy {
    position: relative;
    color: #b12227;
    font-size: 17px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.brand-mark-academy::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 7px;
    vertical-align: -8px;
    background: radial-gradient(circle at 50% 35%, #fff 0 22%, transparent 24%), #b12227;
    clip-path: polygon(50% 0, 100% 86%, 0 86%);
}

.brand-divider {
    width: 1px;
    height: 34px;
    background: rgba(9, 48, 107, 0.28);
}

.brand-icc,
.footer-logo {
    font-family: "ICC Roboto", Arial, sans-serif;
    color: #1b4f9f;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -3px;
}

.brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title strong {
    font-size: 15px;
    white-space: nowrap;
}

.brand-title em {
    margin-top: 3px;
    color: #335b91;
    font-family: "ICC Roboto", Arial, sans-serif;
    font-size: 8px;
    font-style: normal;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    color: #132b56;
}

.main-nav a {
    position: relative;
    padding: 26px 0 22px;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 28px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
    padding: 11px 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    height: 640px;
    min-height: 560px;
    overflow: hidden;
    background: #dfeafb;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../img/icc-home/hero-building.png") right center / cover no-repeat;
    animation: heroZoom 11s ease-in-out infinite alternate;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(103deg, rgba(242, 248, 255, 0.98) 0%, rgba(232, 241, 253, 0.78) 36%, rgba(227, 239, 253, 0.28) 58%, rgba(8, 30, 65, 0.08) 100%),
        radial-gradient(circle at 44% 80%, rgba(255, 184, 87, 0.72), rgba(255, 255, 255, 0) 18%),
        linear-gradient(64deg, rgba(8, 39, 95, 0.18), rgba(255, 255, 255, 0) 42%);
}

.hero-ribbon {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -16px;
    height: 170px;
    background:
        linear-gradient(100deg, #082b69 0 9%, transparent 9% 100%),
        linear-gradient(178deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.9) 40%, rgba(121, 168, 229, 0.45) 54%, rgba(255, 255, 255, 0) 70%);
    transform: skewY(-1.5deg);
}

.hero-ribbon::after {
    content: "";
    position: absolute;
    left: 4%;
    top: 46px;
    width: 120%;
    height: 32px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), rgba(66, 120, 205, 0.34), transparent);
    filter: blur(2px);
    animation: lightMove 4.8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 56px;
}

.hero-slogan {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 44px;
    color: #0c4399;
    text-shadow: 0 7px 15px rgba(4, 48, 123, 0.14);
}

.brush-word,
.hero-slogan p span {
    font-family: "KaiTi", "STKaiti", serif;
    font-weight: 700;
    color: #0d4092;
}

.brush-word {
    margin-top: 1px;
    font-size: 60px;
    line-height: 0.88;
}

.hero-slogan p {
    position: relative;
    margin: 0;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.5px;
}

.hero-slogan p:first-child::after {
    content: "";
    display: inline-block;
    width: 120px;
    height: 2px;
    margin-left: 13px;
    vertical-align: middle;
    background: #0d55c4;
}

.hero-slogan p span {
    font-size: 58px;
    line-height: 0;
    vertical-align: -12px;
}

.section-dark {
    background: var(--navy);
    color: #fff;
}

.services-section {
    padding: 84px 0 96px;
}

.section-heading.center {
    text-align: center;
}

.section-heading p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    letter-spacing: 6px;
}

.section-heading h1,
.section-top h2,
.quick-title h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin-top: 68px;
}

.service-card {
    position: relative;
    grid-column: span 2;
    min-height: 214px;
    padding: 26px 24px;
    overflow: hidden;
    color: #0a3476;
    background: linear-gradient(145deg, #fff 0%, #f5f8fd 100%);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card-wide {
    grid-column: span 3;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(11, 74, 162, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 42px rgba(0, 0, 0, 0.26);
}

.service-card img {
    position: absolute;
    right: 10px;
    bottom: 2px;
    width: 43%;
    max-width: 152px;
    filter: drop-shadow(0 12px 16px rgba(10, 92, 194, 0.25));
    animation: floatIcon 4.6s ease-in-out infinite;
}

.service-card-wide img {
    max-width: 168px;
}

.service-copy {
    position: relative;
    z-index: 1;
    width: 66%;
}

.service-copy span {
    display: block;
    margin-bottom: 17px;
    color: #0a3b86;
    font-family: "ICC Roboto", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.service-copy h2 {
    margin: 0 0 10px;
    font-size: 27px;
    font-weight: 700;
}

.service-copy p {
    min-height: 66px;
    margin: 0 0 16px;
    color: #687487;
    font-size: 14px;
    line-height: 1.72;
}

.service-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.history-section {
    position: relative;
    padding: 60px 0 92px;
    background:
        radial-gradient(circle at 30% 28%, rgba(227, 234, 244, 0.92) 0 1px, transparent 1.3px) 0 0 / 10px 10px,
        linear-gradient(#fff, #fff);
}

.section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.section-top h2,
.quick-title h2 {
    color: #062d69;
}

.section-dark .section-top h2 {
    color: #fff;
}

.section-top > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 33px;
    padding: 0 20px;
    color: #8793a3;
    background: #fff;
    border: 1px solid #dfe5ee;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
}

.section-dark .section-top > a {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.58);
}

.timeline {
    position: relative;
    height: 360px;
    margin-top: 26px;
    background: radial-gradient(ellipse at center, rgba(239, 244, 250, 0.78), rgba(255, 255, 255, 0) 58%);
}

.timeline-wave {
    position: absolute;
    left: 50%;
    top: 102px;
    width: 112%;
    height: 180px;
    transform: translateX(-50%);
    overflow: visible;
}

.wave-main,
.wave-shadow,
.wave-soft {
    fill: none;
    stroke-linecap: round;
}

.wave-main {
    stroke: #285dab;
    stroke-width: 2.2;
}

.wave-shadow {
    stroke: rgba(59, 132, 231, 0.2);
    stroke-width: 16;
    filter: blur(2px);
}

.wave-soft {
    stroke: rgba(94, 155, 235, 0.34);
    stroke-width: 1.2;
}

.timeline-items {
    position: absolute;
    inset: 0;
}

.timeline-item {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 205px;
    text-align: center;
    transform: translateX(-50%);
}

.timeline-item i {
    position: absolute;
    left: 50%;
    width: 11px;
    height: 11px;
    background: var(--gold);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(232, 173, 40, 0.6), 0 0 18px rgba(232, 173, 40, 0.48);
    transform: translateX(-50%);
}

.timeline-item.high i {
    bottom: -52px;
}

.timeline-item.low i {
    top: -47px;
}

.timeline-item.high i::after,
.timeline-item.low i::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 38px;
    border-left: 1px dashed rgba(232, 173, 40, 0.55);
    transform: translateX(-50%);
}

.timeline-item.high i::after {
    top: 11px;
}

.timeline-item.low i::after {
    bottom: 11px;
}

.timeline-item h3 {
    margin: 0 0 11px;
    color: #0a4aa7;
    font-family: "ICC Roboto", Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
}

.timeline-item p {
    margin: 0;
    color: #6d7b8b;
    font-size: 13px;
    line-height: 1.65;
}

.news-section {
    padding: 72px 0 42px;
}

.news-list {
    margin-top: 48px;
    padding: 18px 40px;
    background: #09234d;
    border-radius: 4px;
}

.news-row {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) 88px;
    align-items: center;
    gap: 22px;
    min-height: 78px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, color 0.2s ease;
}

.news-row:last-child {
    border-bottom: 0;
}

.news-row:hover {
    color: #b8d8ff;
    transform: translateX(6px);
}

.news-row time {
    font-family: "ICC Roboto", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.news-row strong {
    overflow: hidden;
    font-size: 17px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag {
    justify-self: end;
    min-width: 76px;
    padding: 7px 11px;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.tag-gold {
    background: var(--gold);
}

.tag-blue {
    background: #334e94;
}

.tag-red {
    background: var(--red);
}

.quick-section {
    padding: 34px 0 31px;
    color: #fff;
    background: #082a61;
}

.quick-inner {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    align-items: center;
    gap: 16px;
}

.quick-title h2 {
    color: #fff;
    font-size: 33px;
}

.quick-title p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.quick-card {
    position: relative;
    min-height: 140px;
    overflow: hidden;
    padding: 26px 24px;
    background:
        radial-gradient(circle at 78% 70%, rgba(50, 136, 255, 0.58), transparent 28%),
        linear-gradient(135deg, #123f93, #082655 76%);
    border: 1px solid rgba(121, 174, 255, 0.58);
    border-radius: 8px;
    box-shadow: inset 0 0 25px rgba(44, 123, 245, 0.16), 0 16px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 220, 255, 0.9);
}

.quick-card h3 {
    margin: 0 0 8px;
    font-size: 27px;
}

.quick-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.55;
}

.quick-card span {
    display: inline-flex;
    padding: 6px 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 12px;
}

.quick-card img {
    position: absolute;
    right: 12px;
    bottom: -4px;
    width: 155px;
    filter: drop-shadow(0 15px 20px rgba(61, 149, 255, 0.55));
    animation: floatIcon 4.6s ease-in-out infinite;
}

.honors-section {
    padding: 70px 0 90px;
    background: #f6f8fb;
}

.honor-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.honor-card {
    min-height: 274px;
    padding: 32px 24px 25px;
    text-align: center;
    background: linear-gradient(180deg, #edf4ff 0%, #fff 100%);
    border: 1px solid #e1e8f1;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.honor-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(22, 66, 126, 0.12);
}

.honor-card img {
    width: 162px;
    height: 105px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.honor-card h3 {
    margin: 0 auto 10px;
    color: #d79a24;
    font-size: 16px;
    line-height: 1.45;
}

.honor-card p {
    margin: 0;
    color: #86909f;
    font-size: 13px;
}

.site-footer {
    padding: 58px 0 52px;
    color: #fff;
    background: #071a34;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) 310px 228px;
    align-items: center;
    gap: 44px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0 14px;
    align-items: center;
}

.footer-logo {
    color: #fff;
    font-size: 40px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 18px;
}

.footer-brand p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "ICC Roboto", Arial, sans-serif;
    font-size: 10px;
}

.footer-brand small {
    grid-column: 1 / -1;
    margin-top: 29px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    line-height: 1.85;
}

.footer-contact {
    margin: 0;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.78);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    font-style: normal;
}

.footer-contact p {
    position: relative;
    margin: 15px 0;
    font-size: 13px;
}

.footer-contact p::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
}

.footer-qrs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 28px;
    border-left: 1px solid rgba(31, 104, 207, 0.6);
}

.footer-qrs figure {
    margin: 0;
    text-align: center;
}

.footer-qrs span {
    display: block;
    width: 86px;
    height: 86px;
    margin: 0 auto 12px;
    background:
        linear-gradient(90deg, #111 50%, transparent 50%) 0 0 / 12px 12px,
        linear-gradient(#111 50%, transparent 50%) 0 0 / 12px 12px,
        #fff;
    border: 8px solid #fff;
}

.footer-qrs figcaption {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.045);
    }
}

@keyframes lightMove {
    0%, 100% {
        transform: translateX(-5%);
        opacity: 0.4;
    }
    50% {
        transform: translateX(13%);
        opacity: 1;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 22px;
    }

    .brand-title strong {
        font-size: 13px;
    }
}

@media (max-width: 960px) {
    .page-shell {
        width: min(100% - 40px, var(--shell));
    }

    .site-header {
        height: 58px;
    }

    .brand {
        gap: 8px;
    }

    .brand-mark-academy {
        font-size: 11px;
        letter-spacing: 0;
    }

    .brand-mark-academy::before {
        width: 21px;
        height: 21px;
        margin-right: 4px;
        vertical-align: -6px;
    }

    .brand-divider {
        height: 25px;
    }

    .brand-icc {
        font-size: 21px;
    }

    .brand-title strong {
        max-width: 148px;
        overflow: hidden;
        font-size: 10px;
        text-overflow: ellipsis;
    }

    .brand-title em {
        max-width: 150px;
        overflow: hidden;
        font-size: 6px;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 58px;
        left: 20px;
        right: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 10px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(12, 65, 140, 0.1);
        border-radius: 16px;
        box-shadow: 0 20px 45px rgba(5, 24, 55, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 10px;
        border-radius: 9px;
        text-align: center;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: #edf5ff;
    }

    .hero {
        height: 365px;
        min-height: 365px;
    }

    .hero-bg {
        background-image: url("../img/icc-home/hero-building-alt.png");
        background-position: 61% center;
    }

    .hero-shade {
        background:
            linear-gradient(96deg, rgba(242, 248, 255, 0.98) 0%, rgba(235, 243, 254, 0.66) 43%, rgba(236, 244, 255, 0.08) 82%),
            radial-gradient(circle at 36% 78%, rgba(255, 175, 74, 0.64), rgba(255, 255, 255, 0) 20%);
    }

    .hero-ribbon {
        height: 92px;
        left: -38%;
        right: -28%;
    }

    .hero-content {
        align-items: flex-start;
        padding-top: 116px;
    }

    .hero-slogan {
        gap: 6px;
        margin-top: 0;
    }

    .brush-word {
        font-size: 37px;
    }

    .hero-slogan p {
        font-size: 18px;
        line-height: 1.35;
        letter-spacing: -0.7px;
    }

    .hero-slogan p:first-child::after {
        width: 42px;
        margin-left: 7px;
    }

    .hero-slogan p span {
        font-size: 36px;
        vertical-align: -8px;
    }

    .services-section {
        padding: 54px 0 58px;
    }

    .section-heading p {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .section-heading h1,
    .section-top h2,
    .quick-title h2 {
        font-size: 28px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 38px;
    }

    .service-card,
    .service-card-wide {
        grid-column: auto;
        min-height: 150px;
        padding: 20px 20px 17px;
        border-radius: 7px;
    }

    .service-copy {
        width: 58%;
    }

    .service-copy span {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .service-copy h2 {
        font-size: 20px;
    }

    .service-copy p {
        min-height: auto;
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.62;
    }

    .service-card img,
    .service-card-wide img {
        right: 10px;
        bottom: 8px;
        width: 36%;
        max-width: 126px;
    }

    .history-section {
        padding: 47px 0 56px;
    }

    .section-top > a {
        height: 26px;
        padding: 0 12px;
        font-size: 10px;
    }

    .timeline {
        height: 300px;
        margin-top: 22px;
    }

    .timeline-wave {
        top: 106px;
        left: 50%;
        width: 182%;
    }

    .timeline-item {
        width: 142px;
    }

    .timeline-item h3 {
        font-size: 17px;
    }

    .timeline-item p {
        font-size: 10px;
        line-height: 1.55;
    }

    .timeline-item:nth-child(n + 6) {
        display: none;
    }

    .timeline-item:nth-child(1) { --x: 18% !important; --y: 64% !important; }
    .timeline-item:nth-child(2) { --x: 36% !important; --y: 30% !important; }
    .timeline-item:nth-child(3) { --x: 63% !important; --y: 61% !important; }
    .timeline-item:nth-child(4) { --x: 82% !important; --y: 26% !important; }
    .timeline-item:nth-child(5) { display: none; }

    .news-section {
        padding: 46px 0 42px;
    }

    .news-list {
        margin-top: 25px;
        padding: 0 18px;
    }

    .news-row {
        grid-template-columns: 78px minmax(0, 1fr) 66px;
        gap: 10px;
        min-height: 72px;
    }

    .news-row time {
        font-size: 12px;
    }

    .news-row strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 13px;
        line-height: 1.55;
        text-overflow: clip;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tag {
        min-width: 58px;
        padding: 5px 7px;
        font-size: 10px;
    }

    .quick-section {
        padding: 37px 0 38px;
    }

    .quick-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .quick-title {
        grid-column: 1 / -1;
        display: flex;
        align-items: baseline;
        gap: 18px;
    }

    .quick-title p {
        margin: 0;
        font-size: 11px;
    }

    .quick-card {
        min-height: 120px;
        padding: 18px 13px;
    }

    .quick-card h3 {
        font-size: 17px;
    }

    .quick-card p {
        font-size: 10px;
    }

    .quick-card span {
        padding: 5px 10px;
        font-size: 10px;
    }

    .quick-card img {
        right: -8px;
        width: 92px;
    }

    .honors-section {
        padding: 50px 0 62px;
    }

    .honor-scroll {
        display: flex;
        gap: 14px;
        width: calc(100% + 20px);
        margin-top: 32px;
        overflow-x: auto;
        padding: 0 20px 8px 0;
        scroll-snap-type: x mandatory;
    }

    .honor-card {
        flex: 0 0 155px;
        min-height: 205px;
        padding: 26px 15px 18px;
        scroll-snap-align: start;
    }

    .honor-card img {
        width: 105px;
        height: 72px;
        margin-bottom: 18px;
    }

    .honor-card h3 {
        font-size: 12px;
    }

    .honor-card p {
        font-size: 10px;
    }

    .site-footer {
        padding: 45px 0 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-brand {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .footer-logo {
        font-size: 33px;
    }

    .footer-brand h2 {
        font-size: 14px;
    }

    .footer-brand small {
        margin-top: 22px;
        font-size: 9px;
    }

    .footer-contact,
    .footer-qrs {
        padding-left: 28px;
    }

    .footer-qrs {
        grid-template-columns: 96px 96px;
        justify-content: end;
        border-left: 1px solid rgba(31, 104, 207, 0.6);
    }

    .footer-qrs span {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 420px) {
    .page-shell {
        width: calc(100% - 40px);
    }

    .quick-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-qrs {
        justify-content: start;
    }
}
