.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #fff;
    background: linear-gradient(135deg, #0b2b57 0%, #1764e8 58%, #4db6ff 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 54px;
    align-items: center;
    min-height: 620px;
    padding: 72px 0;
}

.hero-copy h1 {
    margin: 0 0 20px;
    max-width: 760px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
}

.hero-desc {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-panel {
    position: relative;
    min-height: 390px;
}

.hero-image {
    overflow: hidden;
    height: 310px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-panel-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(86%, 360px);
    padding: 24px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-panel-card span {
    color: var(--brand);
    font-weight: 800;
    font-size: 13px;
}

.hero-panel-card strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.25;
}

.hero-panel-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
    gap: 52px;
    align-items: start;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.feature-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-card span {
    color: var(--brand);
    font-weight: 900;
}

.feature-card h3 {
    margin: 14px 0 8px;
    font-size: 21px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

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

.news-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: .2s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--brand-soft);
}

.news-body {
    padding: 22px;
}

.news-date {
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
}

.news-body h3 {
    margin: 8px 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

.news-body p {
    margin: 0;
    color: var(--muted);
}

.cta-section {
    color: #fff;
    background: #0f3f9e;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-box .section-kicker { color: #cfe2ff; }
.cta-box h2 { max-width: 720px; }

.page-hero {
    padding: 86px 0;
    color: #fff;
    background: linear-gradient(135deg, #0e2d5c, #1764e8);
}

.page-hero.compact {
    padding: 58px 0;
}

.page-hero h1 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

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

.contact-card {
    min-height: 150px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(16,32,51,.06);
}

.contact-card span {
    color: var(--brand);
    font-weight: 800;
}

.contact-card strong {
    font-size: 20px;
    line-height: 1.35;
    word-break: break-word;
}

.qr-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.richtext-container {
    max-width: 980px;
}

.richtext-body {
    color: #26384c;
    font-size: 17px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.richtext-body img,
.richtext-body video,
.richtext-body iframe,
.richtext-body table {
    max-width: 100%;
}

.pager-wrap {
    margin-top: 34px;
}

.article-detail {
    max-width: 920px;
}

.article-cover {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    margin-bottom: 28px;
    border-radius: 8px;
}

@media (max-width: 960px) {
    .hero-grid,
    .split-grid,
    .feature-grid,
    .news-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .home-hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-panel { min-height: 300px; }
    .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .hero-grid { padding: 56px 0; }
    .hero-panel { min-height: auto; }
    .hero-image { height: 220px; }
    .hero-panel-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }
    .section-head { align-items: flex-start; flex-direction: column; }
}
