@charset "utf-8";

:root {
    --site-blue: #0f4fb8;
    --site-blue-dark: #092a68;
    --site-cyan: #22c7d8;
    --site-gold: #f2b84b;
    --site-red: #d72535;
    --site-ink: #14213d;
    --site-muted: #63708a;
    --site-soft: #f4f7fb;
    --site-card: rgba(255, 255, 255, .92);
    --site-border: rgba(20, 33, 61, .1);
    --site-shadow: 0 18px 45px rgba(15, 79, 184, .13);
    --site-radius: 24px;
}

@media (max-width: 1024px) {
    body.modern-site.site-nav-open {
        overflow: hidden;
    }

    .modern-site .site-header .site-actions {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 16px !important;
        position: relative !important;
        z-index: 1003 !important;
        transform: translateY(3px) !important;
    }

    .modern-site .site-header .site-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1004 !important;
        flex: 0 0 42px !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, .52) !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, .14) !important;
        appearance: none !important;
    }

    .modern-site .site-header .site-menu-toggle > span {
        display: block !important;
        flex: 0 0 2px !important;
        width: 18px !important;
        height: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 99px !important;
        background: #fff !important;
    }

    .modern-site .site-header.is-open .site-menu-toggle {
        border-color: rgba(15, 79, 184, .22) !important;
        background: #fff !important;
        box-shadow: 0 8px 22px rgba(8, 28, 70, .16) !important;
    }

    .modern-site .site-header.is-open .site-menu-toggle > span {
        background: var(--site-blue) !important;
    }

    .modern-site .site-header .nav {
        display: block !important;
        visibility: visible !important;
    }

    .modern-site .site-header.is-open .nav,
    .modern-site .site-header.is-open .nav a,
    .modern-site .site-header.is-open .nav button {
        color: var(--site-ink) !important;
    }

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.modern-site {
    min-width: 0;
    background: #f7f9fd;
    color: var(--site-ink);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    overflow-x: hidden;
}

.modern-site a {
    color: inherit;
    transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.modern-site img {
    max-width: 100%;
}

.modern-site .inner,
.site-container {
    width: min(1200px, calc(100% - 32px));
    max-width: none;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: transparent;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-solid,
.site-header.is-open,
.modern-site:not(.home-page) .site-header {
    background: rgba(8, 38, 94, .92);
    box-shadow: 0 14px 35px rgba(4, 16, 43, .18);
    backdrop-filter: blur(14px);
}

.site-header .header-xia {
    background: transparent !important;
    height: auto;
}

.modern-site .site-header .inner {
    width: 100%;
    max-width: none;
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 78px;
    gap: 6px;
    padding-left: 24px;
}

.site-header .logo {
    flex: 0 0 470px;
    float: none !important;
    width: 470px !important;
    margin: 0 !important;
    position: relative;
    z-index: 1002;
    overflow: visible;
}

.site-header .logo a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header .site-logo-icon {
    display: none;
}

.site-header .logo img {
    width: auto !important;
    height: 56px !important;
    display: block;
}

.site-header .logo .site-logo-wordmark {
    max-width: 315px;
    object-fit: contain;
    object-position: left center;
    clip-path: none;
    margin-left: 0;
}

.site-header .site-logo-text {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

.site-header .site-logo-divider {
    margin-right: 8px;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    opacity: .86;
}

.site-header .site-logo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.site-header .site-logo-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-header .site-logo-en {
    margin-top: 4px;
    font-size: 6px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: .2px;
    opacity: .86;
    transform-origin: left center;
}

.site-header .nav {
    float: none !important;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 calc(100% - 496px);
    max-width: calc(100% - 496px);
    margin: 0 !important;
    position: relative;
    min-width: 0;
    padding: 0 14px 0 0;
}

.site-header .site-nav-fixed {
    flex: 0 0 auto;
}

.site-header .site-nav-scroll {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
}

.site-header .site-nav-scroll::-webkit-scrollbar {
    display: none;
}

.site-header .site-nav-scroll-btn {
    position: static;
    top: 50%;
    flex: 0 0 24px;
    width: 24px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(3px);
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .68);
    font-size: 22px;
    line-height: 1;
    font-family: Arial, sans-serif;
    font-weight: 400;
    cursor: pointer;
    z-index: 2;
    opacity: .72;
    transition: opacity .2s ease, color .2s ease;
}

.site-header .site-nav-scroll-btn:hover {
    color: rgba(255, 255, 255, .92);
    opacity: 1;
}

.site-header .site-nav-prev {
}

.site-header .site-nav-next {
}

.site-header .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    width: auto !important;
}

.site-header .site-nav-scroll .menu {
    justify-content: flex-start;
    width: max-content !important;
}

.site-header .menu .menu-li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    position: relative;
}

.site-header .menu .menu-li span a {
    display: block;
    height: auto !important;
    line-height: 1.2 !important;
    padding: 14px 11px !important;
    color: rgba(255, 255, 255, .92) !important;
    font-size: 15px !important;
    border-radius: 999px;
}

.site-header .menu .menu-li:hover span a {
    color: #fff !important;
    background: rgba(255, 255, 255, .13);
}

.site-header .menu .menu-li .ejmenu-box {
    position: absolute !important;
    left: 50% !important;
    top: 100% !important;
    width: 180px !important;
    transform: translateX(-50%);
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 18px 38px rgba(10, 35, 80, .18);
    overflow: visible !important;
}

@media (min-width: 1025px) {
    .site-header .site-nav-scroll .menu .menu-li .ejmenu-box {
        position: fixed !important;
        left: var(--submenu-left, 50%) !important;
        top: var(--submenu-top, 78px) !important;
        z-index: 1200;
        display: none;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .site-header .site-nav-scroll .menu .menu-li.is-submenu-open > .ejmenu-box {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto;
    }
}

.site-header .menu .menu-li .ejmenu-box .ejmenu-box-li {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    line-height: 1.4 !important;
}

.site-header .menu .menu-li .ejmenu-box .ejmenu-box-li a {
    display: block;
    padding: 10px 12px !important;
    color: var(--site-ink) !important;
    font-size: 14px !important;
    border-radius: 10px;
}

.site-header .menu .menu-li .ejmenu-box .ejmenu-box-li a:hover {
    background: #eef5ff !important;
    color: var(--site-blue) !important;
}

.site-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1002;
    transform: translateY(3px);
}

.site-search-link,
.site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
}

.site-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.site-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.mobile-sub-toggle,
.site-nav-mask {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(34, 199, 216, .35), transparent 32%), linear-gradient(135deg, #061d4c 0%, #0f4fb8 58%, #0b7fc4 100%);
}

.modern-site.home-page .hero {
    background: #061d4c;
}

.modern-site.home-page .hero.banner {
    height: auto !important;
    min-height: 720px !important;
    background: #061d4c !important;
}

.hero-bg-fallback,
.hero-bg-fallback img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-fallback {
    z-index: 1;
    overflow: hidden;
    background: #061d4c;
}

.hero-bg-fallback img {
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity .55s ease;
}

.hero-bg-fallback .hero-bg-frame-0,
.hero-bg-fallback .hero-bg-frame.is-active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(5, 22, 58, .88) 0%, rgba(7, 35, 87, .72) 44%, rgba(7, 35, 87, .25) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    z-index: 3;
}

.hero-slider,
.hero-slider .flexslider,
.hero-slider .flex-viewport,
.hero-slider .slides,
.hero-slider .slides li,
.hero-slider .slides a,
.hero-slider .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: 3;
    display: block !important;
    background: transparent !important;
    pointer-events: none;
}

.hero .banner-hd,
.hero .banner-hd li {
    pointer-events: auto;
}

.hero-slider .flexslider,
.hero-slider .flex-viewport,
.hero-slider .slides {
    display: block !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-slider .slides li,
.hero-slider .slides a,
.hero-slider .slides img {
    display: block !important;
}

.hero-slider .slides > li:first-child {
    display: block;
}

.hero-slider .slides img {
    object-fit: cover;
    opacity: .78;
}

.hero-content {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding-top: 78px;
}

.hero-copy {
    width: min(680px, 100%);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--site-gold);
    box-shadow: 0 0 0 6px rgba(242, 184, 75, .18);
}

.hero h1 {
    margin: 28px 0 20px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: .03em;
    color: #fff;
    font-weight: 800;
}

.hero p {
    width: min(560px, 100%);
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--site-blue);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(15, 79, 184, .22);
}

.site-btn:hover {
    transform: translateY(-2px);
}

.site-btn.is-light {
    background: #fff;
    color: var(--site-blue) !important;
}

.site-btn.is-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .28);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(560px, 100%);
    margin-top: 52px;
}

.hero-metric {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(10px);
}

.hero-metric strong {
    display: block;
    font-size: 28px;
    color: #fff;
}

.hero-metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
}

.hero .banner-hd {
    position: absolute;
    z-index: 7;
    right: max(32px, calc((100vw - 1200px) / 2));
    bottom: 44px;
    display: flex;
    gap: 10px;
}

.hero .banner-hd li {
    width: 34px;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .38);
    cursor: pointer;
}

.hero .banner-hd li.flex-active {
    background: #fff;
}

.hero-rich::before {
    background: linear-gradient(90deg, rgba(5, 22, 58, .62) 0%, rgba(7, 35, 87, .4) 48%, rgba(7, 35, 87, .08) 100%);
}

.modern-site.home-page .hero::before {
    z-index: 4;
    background: linear-gradient(90deg, rgba(5, 22, 58, .56) 0%, rgba(7, 35, 87, .32) 48%, rgba(7, 35, 87, .04) 100%);
}

.modern-site.home-page .hero::after {
    z-index: 5;
    opacity: .45;
}

.hero-rich .hero-slider .slides img {
    opacity: .94;
}

.modern-site.home-page .hero {
    background: #061d4c url(/pa/fill/home-banner-1.png) center / cover no-repeat !important;
}

.modern-site.home-page .hero-slider,
.modern-site.home-page .hero-slider .flexslider,
.modern-site.home-page .hero-slider .flex-viewport,
.modern-site.home-page .hero-slider .slides,
.modern-site.home-page .hero-slider .slides li,
.modern-site.home-page .hero-slider .slides a,
.modern-site.home-page .hero-slider .slides img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.modern-site.home-page .hero-slider {
    z-index: 7 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-site.home-page .hero-slider .flexslider,
.modern-site.home-page .hero-slider .flex-viewport,
.modern-site.home-page .hero-slider .slides {
    display: block !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.modern-site.home-page .hero-slider .slides li,
.modern-site.home-page .hero-slider .slides a,
.modern-site.home-page .hero-slider .slides img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modern-site.home-page .hero-slider .slides img {
    object-fit: cover !important;
}

.hero-rich-content {
    justify-content: space-between;
    gap: 40px;
}

.hero-spotlight {
    position: relative;
    z-index: 5;
    width: min(380px, 100%);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 24px;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 48px rgba(5, 18, 48, .24);
}

.hero-spotlight > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 184, 75, .95);
    color: #061d4c;
    font-weight: 700;
}

.hero-spotlight a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.7;
}

.hero-spotlight a:hover {
    color: #fff;
    transform: translateX(4px);
}

.gateway-band {
    position: relative;
    z-index: 6;
    margin-top: -68px;
    padding-bottom: 18px;
}

.gateway-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gateway-card {
    position: relative;
    min-height: 168px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 48, 105, .13);
    overflow: hidden;
}

.gateway-card::before {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(15, 79, 184, .08);
    transition: transform .35s ease;
}

.gateway-card:hover {
    transform: translateY(-6px);
    color: var(--site-blue);
}

.gateway-card:hover::before {
    transform: scale(1.45);
}

.gateway-card-1::before {
    background: rgba(215, 37, 53, .08);
}

.gateway-card-2::before {
    background: rgba(34, 199, 216, .12);
}

.gateway-card-3::before {
    background: rgba(242, 184, 75, .14);
}

.gateway-card-4::before {
    background: rgba(99, 102, 241, .1);
}

.gateway-card-5::before {
    background: rgba(22, 163, 74, .11);
}

.gateway-card-6::before {
    background: rgba(234, 88, 12, .11);
}

.gateway-index {
    display: block;
    color: #a7b3c8;
    font-weight: 800;
}

.gateway-card h3 {
    position: relative;
    margin: 18px 0 10px;
    font-size: 22px;
}

.gateway-card p {
    position: relative;
    color: var(--site-muted);
    line-height: 1.75;
}

.section-block {
    position: relative;
    padding: 78px 0;
}

.section-block.is-soft {
    background: linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--site-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--site-ink);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    text-align: left !important;
}

.section-desc {
    margin-top: 12px;
    color: var(--site-muted);
    line-height: 1.8;
}

.section-more {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--site-blue) !important;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
    gap: 26px;
}

.news-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: stretch;
}

.news-photo-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.news-photo-card {
    display: grid;
    grid-template-rows: 285px 1fr;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.news-photo-card .photo {
    height: 285px;
    overflow: hidden;
    background: #d9e5f5;
}

.news-photo-card img,
.topic-card img,
.research-card img,
.youth-card img,
.campus-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-photo-card:hover img,
.topic-card:hover img,
.research-card:hover img,
.youth-card:hover img,
.campus-gallery img:hover {
    transform: scale(1.06);
}

.news-photo-card .info {
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.news-photo-card h3 {
    margin: 16px 0 12px;
    font-size: 24px;
    line-height: 1.48;
}

.news-photo-card p {
    color: var(--site-muted);
    line-height: 1.85;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-photo-card time {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    color: #8b98ad;
}

.news-side-panel {
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, #08265e, #0f4fb8);
    color: #fff;
    box-shadow: var(--site-shadow);
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.panel-title strong {
    font-size: 24px;
}

.panel-title span {
    color: rgba(255, 255, 255, .48);
    letter-spacing: .2em;
}

.news-line {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .9);
}

.news-line:hover {
    color: #fff;
    transform: translateX(4px);
}

.news-line time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
}

.news-line time strong {
    font-size: 20px;
}

.news-line time span {
    margin-top: 4px;
    opacity: .72;
    font-size: 12px;
}

.news-line > span {
    line-height: 1.65;
}

.feature-news {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: var(--site-shadow);
}

.feature-news .media {
    overflow: hidden;
    background: #d9e5f5;
}

.feature-news img,
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.feature-news:hover img,
.media-card:hover img {
    transform: scale(1.06);
}

.feature-news .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--site-blue);
    font-size: 13px;
}

.feature-news h3 {
    margin: 20px 0 14px;
    font-size: 26px;
    line-height: 1.45;
}

.feature-news p {
    color: var(--site-muted);
    line-height: 1.9;
}

.date-line {
    margin-top: 22px;
    color: #93a0b8;
    font-size: 14px;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-list-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 24px rgba(20, 33, 61, .05);
}

.news-list-card:hover,
.notice-card:hover,
.media-card:hover,
.title-list.modern-list li:hover,
.image-list.modern-image-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--site-shadow);
}

.news-date,
.list-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--site-blue), #178fd1);
    color: #fff;
}

.news-date strong,
.list-date-badge strong {
    font-size: 24px;
    line-height: 1;
}

.news-date span,
.list-date-badge span {
    margin-top: 6px;
    font-size: 12px;
    opacity: .86;
}

.news-list-card h4 {
    margin: 0;
    color: var(--site-ink);
    font-size: 17px;
    line-height: 1.65;
}

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

.notice-rich {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.notice-cover {
    min-height: 420px;
    padding: 36px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .22), transparent 30%), linear-gradient(135deg, #0f4fb8, #092a68);
    color: #fff;
}

.notice-cover .section-kicker,
.notice-cover h2,
.notice-cover p {
    color: #fff;
}

.notice-cover h2 {
    margin: 18px 0 18px;
    font-size: 38px;
}

.notice-cover p {
    margin-bottom: 36px;
    line-height: 1.9;
    opacity: .82;
}

.notice-list-rich {
    padding: 20px 28px;
}

.notice-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #edf2f8;
}

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

.notice-row:hover {
    transform: translateX(5px);
}

.notice-row time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    border-radius: 18px;
    background: #f1f6ff;
    color: var(--site-blue);
}

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

.notice-row time span {
    margin-top: 4px;
    color: #8b98ad;
}

.notice-row em {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--site-blue);
    font-style: normal;
    font-weight: 700;
}

.notice-row h3 {
    margin: 0;
    color: var(--site-ink);
    font-size: 18px;
    line-height: 1.6;
}

.topic-mosaic {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 250px;
    gap: 20px;
}

.party-mosaic {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-auto-rows: auto;
    align-items: stretch;
}

.party-side {
    display: grid;
    grid-template-rows: minmax(230px, auto) auto;
    gap: 18px;
}

.party-side-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.party-small-card {
    min-height: 230px;
}

.topic-card,
.research-card,
.youth-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    background: #d9e5f5;
    box-shadow: 0 16px 36px rgba(20, 33, 61, .1);
}

.topic-card.is-large {
    grid-row: span 2;
}

.party-mosaic .topic-card.is-large {
    min-height: 478px;
    grid-row: auto;
}

.topic-card::after,
.youth-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(5, 18, 48, .84));
}

.topic-card > div,
.youth-card > div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.topic-card span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(215, 37, 53, .92);
}

.topic-card h3,
.youth-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.55;
}

.topic-card time,
.youth-card time {
    color: rgba(255, 255, 255, .78);
}

.party-info-list {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #edf1f7;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(20, 33, 61, .08);
}

.party-info-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 10px;
    border-radius: 14px;
    color: var(--site-ink);
}

.party-info-row:hover {
    background: #f5f8fc;
    color: var(--site-blue);
    transform: translateX(4px);
}

.party-info-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 11px;
    background: #fff1f2;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 700;
}

.party-info-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.55;
}

.research-grid-rich {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.research-card {
    background: #fff;
}

.research-card img {
    height: 210px;
}

.research-card > div {
    padding: 22px;
}

.research-card h3 {
    margin: 14px 0 12px;
    font-size: 18px;
    line-height: 1.6;
}

.research-card time {
    color: var(--site-muted);
}

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

.education-card {
    min-height: 310px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #f1f7ff);
    box-shadow: var(--site-shadow);
}

.education-card:nth-child(2) {
    background: linear-gradient(135deg, #fff, #f3fffb);
}

.education-card:nth-child(3) {
    background: linear-gradient(135deg, #fff, #fff7e9);
}

.education-card-head {
    margin-bottom: 22px;
}

.education-card-head span {
    display: block;
    color: var(--site-ink);
    font-size: 26px;
    font-weight: 800;
}

.education-card-head strong {
    display: block;
    margin-top: 6px;
    color: #9aa7bc;
    letter-spacing: .08em;
}

.education-card a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(20, 33, 61, .09);
    color: var(--site-ink);
    line-height: 1.6;
}

.education-card a:hover {
    color: var(--site-blue);
    transform: translateX(5px);
}

.youth-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.youth-card {
    height: 360px;
}

.youth-card:nth-child(even) {
    margin-top: 0;
}

.youth-card:nth-child(3n+2) {
    margin-top: 0;
}

.campus-gallery-band {
    padding: 82px 0;
    background: #071b43;
    color: #fff;
    overflow: hidden;
}

.campus-gallery-wrap {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.campus-gallery-copy h2 {
    margin: 14px 0;
    color: #fff;
    font-size: 38px;
    line-height: 1.3;
}

.campus-gallery-copy p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
}

.campus-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 16px;
}

.campus-gallery img {
    height: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
}

.campus-gallery img:nth-child(even) {
    transform: translateY(36px);
}

.campus-gallery img:nth-child(even):hover {
    transform: translateY(36px) scale(1.04);
}

.notice-card,
.media-card {
    position: relative;
    display: block;
    min-height: 210px;
    padding: 26px;
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 33, 61, .07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.notice-card::before {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(15, 79, 184, .08);
}

.notice-card .type {
    color: var(--site-blue);
    font-weight: 700;
}

.notice-card h3 {
    margin: 24px 0 20px;
    min-height: 78px;
    font-size: 20px;
    line-height: 1.55;
}

.notice-card time {
    color: var(--site-muted);
}

.media-card {
    padding: 0;
    min-height: 0;
}

.media-card .thumb {
    height: 220px;
    overflow: hidden;
    background: #dae4f2;
}

.media-card .content {
    padding: 22px;
}

.media-card h3 {
    margin: 12px 0 14px;
    font-size: 19px;
    line-height: 1.6;
}

.media-card time {
    color: var(--site-muted);
    font-size: 14px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff, #eef6ff);
    color: var(--site-ink);
    box-shadow: 0 12px 26px rgba(20, 33, 61, .06);
}

.quick-link:hover {
    color: var(--site-blue);
    transform: translateY(-4px);
}

.page-hero {
    padding: 142px 0 54px;
    background: linear-gradient(90deg, rgba(5, 22, 58, .9), rgba(7, 35, 87, .72) 48%, rgba(7, 35, 87, .35)), url(/pa/fill/inner-hero.jpg) center / cover no-repeat;
    color: #fff;
}

.article-hero {
    background-position: center 42%;
}

.search-hero {
    background-position: center 62%;
}

.page-hero h1 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
}

.crumb {
    color: rgba(255, 255, 255, .76);
}

.crumb a:hover {
    color: #fff;
}

.cms-page {
    padding: 46px 0 72px !important;
    background: #f7f9fd !important;
}

.cms-layout {
    display: grid !important;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px !important;
}

.cms-side {
    position: sticky;
    top: 104px;
    align-self: start;
    width: auto !important;
    overflow: hidden;
    border-radius: 22px;
    background: #fff !important;
    box-shadow: 0 14px 32px rgba(20, 33, 61, .08);
}

.cms-side h3 {
    margin: 0;
    padding: 24px !important;
    background: linear-gradient(135deg, var(--site-blue), #178fd1) !important;
    color: #fff !important;
    font-size: 22px !important;
}

.cms-side a {
    display: block;
    padding: 16px 22px !important;
    border-bottom: 1px solid #eef2f8 !important;
    color: var(--site-ink) !important;
}

.cms-side a.active,
.cms-side a:hover {
    background: #eef6ff !important;
    color: var(--site-blue) !important;
}

.cms-main,
.article-main,
.search-main {
    min-height: 520px;
    padding: 32px !important;
    border-radius: 24px;
    background: #fff !important;
    box-shadow: 0 14px 32px rgba(20, 33, 61, .08);
}

.cms-title,
.article-title {
    color: var(--site-ink) !important;
}

.cms-crumb {
    color: var(--site-muted) !important;
    border-bottom: 1px solid #edf1f7 !important;
}

.title-list.modern-list li,
.image-list.modern-image-list li {
    display: grid !important;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px !important;
    margin-bottom: 14px;
    border: 1px solid #eef2f8 !important;
    border-radius: 18px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cms-list-thumb {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #dae4f2;
}

.cms-list-thumb img {
    display: block;
    width: 180px !important;
    height: 118px !important;
    object-fit: cover;
}

.cms-list-body h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.6;
}

.title-list.modern-list a {
    color: var(--site-ink);
}

.cms-list-body time {
    color: #93a0b8;
    font-size: 14px;
}

.title-list.modern-list a:hover {
    color: var(--site-blue);
}

.image-list.modern-image-list li {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: stretch;
}

.image-list.modern-image-list img {
    width: 220px !important;
    height: 150px !important;
    border-radius: 14px;
    object-fit: cover;
}

.image-list.modern-image-list h3 {
    margin: 2px 0 10px;
    font-size: 21px;
    line-height: 1.5;
}

.image-list.modern-image-list p {
    color: var(--site-muted);
    line-height: 1.8;
}

.article-main {
    max-width: 880px;
}

.article-title {
    margin: 30px 0 14px !important;
    font-size: clamp(26px, 3vw, 38px) !important;
    line-height: 1.45 !important;
}

.article-meta {
    color: var(--site-muted) !important;
    border-bottom: 1px solid #edf1f7 !important;
}

.article-content {
    color: #25324b !important;
    font-size: 17px !important;
    line-height: 2.05 !important;
}

.article-content img {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(20, 33, 61, .1);
}

.pdf-frame {
    width: 100%;
    height: 760px;
    border: 1px solid #dfe6f2;
    border-radius: 16px;
    background: #fff;
}

.article-neighbor {
    display: grid;
    gap: 12px;
    margin-top: 34px !important;
    padding-top: 22px !important;
    border-top: 1px solid #edf1f7 !important;
}

.article-neighbor p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f4f8ff;
}

.search-page {
    padding: 46px 0 72px !important;
    background: #f7f9fd !important;
}

.search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    padding: 10px;
    border: 1px solid #e3eaf5;
    border-radius: 18px;
    background: #f8fbff;
}

.search-form input {
    flex: 1;
    min-width: 0;
    border: 0 !important;
    background: transparent;
    padding: 0 10px !important;
    color: var(--site-ink);
    font-size: 16px;
    outline: none;
}

.search-form button {
    border: 0;
    border-radius: 14px;
    background: var(--site-blue) !important;
    color: #fff;
    padding: 0 28px !important;
    cursor: pointer;
}

.pager {
    margin-top: 30px !important;
    text-align: center;
}

.pager li {
    display: inline-block;
    margin: 4px;
}

.pager a,
.pager span {
    display: block;
    min-width: 38px;
    padding: 9px 12px !important;
    border-radius: 12px;
    background: #eef3fa !important;
    color: var(--site-ink) !important;
}

.pager .active span,
.pager a:hover {
    background: var(--site-blue) !important;
    color: #fff !important;
}

.site-footer {
    margin-top: 0 !important;
    padding: 54px 0 26px;
    background: #071b43;
    color: rgba(255, 255, 255, .78);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr);
    gap: 32px;
    align-items: start;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 24px;
}

.site-footer p {
    line-height: 1.8;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-links a {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
}

.site-footer-links a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .36);
}

.footer-bq {
    margin-top: 34px;
    padding-top: 20px;
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: left !important;
}

.site-backtop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--site-blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 79, 184, .3);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
}

.site-backtop.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

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

@media (max-width: 1100px) {
    .site-header .logo {
        flex-basis: 440px;
        width: 440px !important;
    }

    .site-header .nav {
        flex-basis: calc(100% - 480px);
        max-width: calc(100% - 480px);
    }

    .site-header .logo .site-logo-wordmark {
        max-width: 260px;
    }

    .site-header .site-logo-title {
        font-size: 22px;
    }

    .site-header .site-logo-en {
        font-size: 6px;
    }

    .site-header .menu .menu-li span a {
        padding: 13px 9px !important;
        font-size: 14px !important;
    }

    .news-grid,
    .feature-news {
        grid-template-columns: 1fr;
    }

    .news-showcase,
    .notice-rich,
    .campus-gallery-wrap {
        grid-template-columns: 1fr;
    }

    .gateway-grid,
    .research-grid-rich,
    .youth-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topic-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1024px) {
    .modern-site .site-header .header-xia {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .site-header .inner {
        min-height: 64px;
    }

    .site-header .logo {
        flex-basis: auto;
        width: auto !important;
    }

    .site-actions {
        display: flex !important;
        margin-left: auto !important;
        margin-right: 16px !important;
    }

    .site-header .logo img {
        height: 49px !important;
    }

    .site-header .logo a {
        gap: 8px;
    }

    .site-header .site-logo-icon {
        display: none;
    }

    .site-header .logo .site-logo-wordmark {
        max-width: min(44vw, 240px);
        clip-path: none;
        margin-left: 0;
    }

    .site-header .site-logo-title {
        font-size: clamp(15px, 3.7vw, 21px);
        letter-spacing: 0;
    }

    .site-header .site-logo-en {
        max-width: min(38vw, 190px);
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 6px;
    }

    .site-menu-toggle {
        display: inline-flex !important;
    }

    .site-header .nav {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1001;
        display: block !important;
        width: min(84vw, 360px) !important;
        max-width: min(84vw, 360px) !important;
        height: 100vh;
        margin: 0 !important;
        padding: 86px 22px 30px;
        background: #fff;
        box-shadow: -16px 0 38px rgba(8, 28, 70, .18);
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(105%);
        transition: transform .3s ease;
        float: none !important;
        flex: none !important;
        text-align: left;
    }

    .site-header.is-open .nav {
        transform: translateX(0);
    }

    .site-header .menu {
        position: static !important;
        z-index: auto !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .site-nav-fixed,
    .site-header .site-nav-scroll {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
        flex: none !important;
    }

    .site-header .site-nav-scroll .menu {
        width: 100% !important;
    }

    .site-header .site-nav-scroll-btn {
        display: none;
    }

    .site-header .menu .menu-li {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        text-align: left !important;
        white-space: normal !important;
        border-bottom: 1px solid #edf1f7;
    }

    .site-header .menu .menu-li span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .site-header .menu .menu-li span a {
        flex: 1;
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        padding: 16px 0 !important;
        color: var(--site-ink) !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        text-align: left !important;
        border-radius: 0;
    }

    .modern-site .site-header.is-open .menu .menu-li span a,
    .modern-site .site-header.is-open .menu .menu-li:hover span a,
    .modern-site .site-header.is-open .menu .menu-li .ejmenu-box .ejmenu-box-li a,
    .modern-site .site-header.is-open .menu .menu-li .ejmenu-box .ejmenu-box-li a:hover {
        color: var(--site-ink) !important;
    }

    .mobile-sub-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 50%;
        background: #edf5ff;
        color: var(--site-blue);
        cursor: pointer;
    }

    .site-header .menu .menu-li .ejmenu-box {
        position: static !important;
        display: none;
        width: 100% !important;
        transform: none;
        padding: 0 0 12px !important;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent !important;
    }

    .site-header .menu .menu-li.is-expanded .ejmenu-box {
        display: block !important;
    }

    .site-header .menu .menu-li .ejmenu-box .ejmenu-box-li a {
        padding: 10px 14px !important;
        background: #f5f8fc;
        margin-top: 6px;
    }

    .site-nav-mask {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: block;
        background: rgba(4, 16, 43, .48);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .site-header.is-open .site-nav-mask {
        opacity: 1;
        pointer-events: auto;
    }

    .modern-site.home-page .hero,
    .modern-site.home-page .hero.banner,
    .modern-site.home-page .hero-content {
        height: 100vh !important;
        min-height: 100svh !important;
    }

    .modern-site.home-page .hero-slider,
    .modern-site.home-page .hero-slider .flexslider,
    .modern-site.home-page .hero-slider .flex-viewport,
    .modern-site.home-page .hero-slider .slides,
    .modern-site.home-page .hero-slider .slides li,
    .modern-site.home-page .hero-slider .slides a,
    .modern-site.home-page .hero-slider .slides img {
        height: 100% !important;
        min-height: 100svh !important;
    }

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

    .hero-rich-content {
        display: block;
    }

    .hero-copy {
        padding-top: 4px;
    }

    .hero h1 {
        margin: 18px 0 12px;
    }

    .hero-buttons {
        margin-top: 18px;
    }

    .hero-spotlight {
        margin-top: 28px;
        width: 100%;
    }

    .gateway-band {
        margin-top: 0;
        padding: 0;
        background: #f7f9fd;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-metrics,
    .notice-grid,
    .media-grid,
    .quick-links,
    .education-grid {
        grid-template-columns: 1fr;
    }

    .news-photo-stack,
    .gateway-grid,
    .research-grid-rich,
    .youth-gallery,
    .topic-mosaic {
        grid-template-columns: 1fr;
    }

    .news-photo-card,
    .news-photo-card:nth-child(2),
    .youth-card:nth-child(even) {
        margin-top: 0;
    }

    .topic-mosaic {
        grid-auto-rows: 320px;
    }

    .party-mosaic {
        grid-auto-rows: auto;
    }

    .party-side,
    .party-side-cards {
        grid-template-columns: 1fr;
    }

    .party-mosaic .topic-card.is-large,
    .party-small-card {
        min-height: 320px;
    }

    .topic-card.is-large {
        grid-row: auto;
    }

    .notice-cover {
        min-height: 300px;
    }

    .campus-gallery {
        display: flex;
        overflow-x: auto;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
    }

    .campus-gallery img {
        flex: 0 0 72vw;
        scroll-snap-align: start;
    }

    .campus-gallery img:nth-child(even),
    .campus-gallery img:nth-child(even):hover {
        transform: none;
    }

    .section-block {
        padding: 54px 0;
    }

    .section-head {
        display: block;
    }

    .section-more {
        margin-top: 16px;
    }

    .cms-layout {
        display: block !important;
    }

    .cms-side {
        position: static;
        margin-bottom: 20px;
    }

    .cms-side-links {
        display: flex;
        overflow-x: auto;
    }

    .cms-side-links a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .cms-main,
    .article-main,
    .search-main {
        padding: 22px !important;
    }

    .image-list.modern-image-list li {
        grid-template-columns: 1fr;
    }

    .title-list.modern-list li {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .cms-list-thumb img {
        width: 150px !important;
        height: 100px !important;
    }

    .image-list.modern-image-list img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
    }

    .pdf-frame {
        height: 520px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .modern-site .inner,
    .site-container {
        width: min(100% - 24px, 1200px);
    }

    .modern-site.home-page .hero,
    .modern-site.home-page .hero.banner,
    .modern-site.home-page .hero-content,
    .modern-site.home-page .hero-slider {
        height: 100vh !important;
        min-height: 100svh !important;
    }

    .hero-content {
        padding-top: 88px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-metrics {
        display: none;
    }

    .hero-buttons {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }

    .feature-news .media {
        min-height: 230px;
    }

    .news-photo-card {
        min-height: 0;
        grid-template-rows: 230px auto;
        height: auto;
    }

    .news-photo-card .photo {
        height: 230px;
    }

    .news-side-panel,
    .notice-list-rich,
    .notice-cover,
    .education-card {
        padding: 20px;
    }

    .notice-row,
    .news-line {
        grid-template-columns: 1fr;
    }

    .notice-row time,
    .news-line time {
        width: 90px;
    }

    .feature-news .content,
    .notice-card,
    .media-card .content {
        padding: 20px;
    }

    .news-list-card,
    .title-list.modern-list li {
        grid-template-columns: 1fr;
    }

    .cms-list-thumb img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
    }

    .news-date,
    .list-date-badge {
        width: 78px;
    }

    .search-form {
        display: grid;
    }

    .search-form button {
        min-height: 44px;
    }
}

@media screen and (max-width: 414px) {
    .modern-site.home-page .hero.banner {
        display: block !important;
    }

    .modern-site.home-page .hero-slider,
    .modern-site.home-page .hero-slider .flexslider,
    .modern-site.home-page .hero-slider .slides,
    .modern-site.home-page .hero-slider .slides li,
    .modern-site.home-page .hero-slider .slides a,
    .modern-site.home-page .hero-slider .slides img {
        display: block !important;
    }
}
