/* 雨亭行动·为国储才 公益网站样式 */

/* ==================== 全局样式 ==================== */
:root {
    --brand: #176b68;
    --brand-strong: #0f514f;
    --accent: #c8922e;
    --ink: #17211f;
    --muted: #4f5d59;
    --surface: #fff;
    --surface-soft: #f4f7f5;
    --line: #dce4e1;
    --footer: #162321;
    --content: 1080px;
    --content-wide: 1200px;
    --radius-card: 8px;
    --shadow-soft: 0 12px 32px rgba(23, 33, 31, 0.08);
    --space-section: clamp(72px, 8vw, 112px);

    /* Legacy aliases keep existing page components stable during staged redesign. */
    --primary-color: var(--brand);
    --secondary-color: #2a8f87;
    --accent-color: var(--accent);
    --gold-color: var(--accent);
    --dark-color: var(--ink);
    --light-color: var(--surface-soft);
    --text-color: var(--ink);
    --text-light: var(--muted);
    --white: var(--surface);
    --shadow: var(--shadow-soft);
    --shadow-lg: 0 18px 44px rgba(23, 33, 31, 0.14);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.7;
    letter-spacing: 0;
    overflow-x: clip;
}

body.menu-locked {
    overflow: hidden;
}

/* 大字号设置 - 用户偏好 */
body, p, li, td, th {
    font-size: 1.1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

/* ==================== 双语支持 ==================== */
.en-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85em;
    opacity: 0.7;
    display: none;
    margin-top: 4px;
    line-height: 1.5;
}

.bilingual {
    display: inline;
}

.bilingual .zh {
    display: inline;
}

.bilingual .en {
    display: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85em;
    opacity: 0.65;
    margin-left: 6px;
    font-weight: 400;
}

/* 导航双语 */
.nav-links a .en-text,
.footer-links a .en-text {
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Hero双语 */
.hero-badge .en-text,
.hero-subtitle .en-text,
.stat-label .en-text {
    font-size: 0.8em;
    opacity: 0.8;
}

/* 卡片内双语描述 */
.card-en-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 8px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(calc(100% - 40px), var(--content));
    margin-inline: auto;
}

.container-wide,
.content-wide {
    width: min(calc(100% - 40px), var(--content-wide));
    margin-inline: auto;
}

/* ==================== 语言切换 ==================== */
/* 切换按钮 */
.lang-toggle-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0;
    margin-right: 10px;
    flex-shrink: 0;
}

.lang-toggle-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* 英文模式下：隐藏中文，显示英文 */
html.lang-en .zh {
    display: none !important;
}

html.lang-en .en-text {
    display: inline !important;
    opacity: 1;
    color: inherit;
}

html.lang-en .bilingual .en {
    display: inline !important;
    opacity: 1;
    color: inherit;
}

html.lang-en .card-en-text {
    opacity: 1;
    color: inherit;
}

/* 中文模式（默认）：确保英文隐藏 */
html:not(.lang-en) .en-text {
    display: none;
}

html:not(.lang-en) .bilingual .en {
    display: none;
}

/* ==================== 导航栏 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-content {
    width: min(calc(100% - 40px), var(--content-wide));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-logo-text div {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.nav-logo-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    transition: var(--transition);
    align-items: center;
}

.nav-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta .en-text {
    color: rgba(255,255,255,0.8) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    border: 0;
    background: transparent;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

.mobile-menu-close {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px;
}

.lang-toggle-btn,
.mobile-menu-btn,
.mobile-menu-close {
    min-width: 44px;
    min-height: 44px;
}

/* ==================== 首页 Hero ==================== */
.page-home .hero {
    --home-hero-height: clamp(720px, calc(42.6667vw + 80px), 960px);
    min-height: var(--home-hero-height);
    padding-top: 80px;
    background: #247f84;
    text-align: left;
    color: #fff;
    overflow: hidden;
}

.page-home .hero-layout {
    display: grid;
    grid-template-columns: clamp(480px, 32vw, 660px) minmax(0, 1fr);
    height: calc(var(--home-hero-height) - 80px);
    min-height: calc(var(--home-hero-height) - 80px);
}

.page-home .hero-media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 1857 / 2476;
    overflow: hidden;
}

.page-home .hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1) contrast(1.04);
}

.page-home .hero-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - 64px), 720px);
    margin-inline: auto;
    padding-block: 32px;
}

.page-home .hero-panel .en-text {
    opacity: 1;
}

.page-home .hero-badge {
    display: inline-block;
    padding: 7px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.page-home .hero-name {
    margin-bottom: 6px;
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1.1;
}

.page-home .hero-calligraphy {
    display: block;
    width: min(440px, 100%);
    margin-bottom: 10px;
}

.page-home .hero-calligraphy img {
    width: 100%;
    height: auto;
    display: block;
}

.page-home .hero h1 {
    max-width: none;
    margin-bottom: 24px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0;
    white-space: nowrap;
}

html.lang-en .page-home .hero h1 {
    max-width: 28ch;
    font-size: 2.05rem;
    white-space: normal;
    text-wrap: balance;
}

.hero-buttons,
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: #e6b84d;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-home .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    width: 100%;
    margin-top: 36px;
}

.page-home .stat-item {
    min-width: 0;
    text-align: center;
}

.page-home .stat-number {
    display: block;
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    font-weight: 800;
    color: var(--gold-color);
    line-height: 1.05;
    white-space: nowrap;
}

.page-home .stat-label {
    display: block;
    min-height: 2.8em;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-top: 8px;
}

/* ==================== 通用区块样式 ==================== */
.section {
    padding-block: var(--space-section);
}

.section-soft {
    background: var(--surface-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    max-width: min(100%, 1120px);
    margin-inline: auto;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    color: var(--ink);
    line-height: 1.16;
    text-wrap: balance;
}

.section-desc {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.2rem;
}

.section-link {
    margin-top: 20px;
}

.section-actions {
    margin-top: 40px;
    text-align: center;
}

.section-tag-on-dark {
    background: rgba(255, 255, 255, 0.16);
    color: var(--accent);
}

.title-on-dark {
    color: var(--surface);
}

.cta-actions {
    margin-top: 40px;
}

/* ==================== 关于区域 ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f0f2f5;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 650px;
}

.about-image .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.95rem;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 2;
}

.page-home .home-intro .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 80px);
}

@media (min-width: 1025px) {
    html.lang-en .page-home .home-intro .about-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: clamp(36px, 3vw, 48px);
    }

    html.lang-en .page-home .home-intro .about-content h2 {
        font-size: 1.85rem;
        line-height: 1.35;
        white-space: nowrap;
    }
}

.page-home .home-intro {
    padding-top: 48px;
    background: var(--surface-soft);
    border-top: 6px solid var(--accent);
}

.page-home .home-intro .about-image {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.page-home .program-link {
    margin-top: 30px;
}

.page-home .international-image img {
    display: block;
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
}

.page-history .legacy-feature {
    background: var(--surface);
}

.page-history .legacy-feature-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 6.7vw, 96px);
    align-items: center;
}

.page-history .legacy-portrait,
.page-history .legacy-inscription-media {
    min-width: 0;
    margin: 0;
}

.page-history .legacy-portrait picture {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--surface-soft);
}

.page-history .legacy-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-history .legacy-portrait .image-caption {
    padding: 14px 0 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: left;
}

.page-history .legacy-story {
    max-width: 680px;
}

.page-history .legacy-story h2,
.page-history .legacy-journey h2 {
    margin-bottom: 24px;
    color: var(--brand-strong);
}

.page-history .legacy-story p,
.page-history .legacy-journey p {
    margin-bottom: 18px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.9;
}

.page-history .legacy-story p:last-child,
.page-history .legacy-journey p:last-child {
    margin-bottom: 0;
}

.page-history .legacy-inscription {
    background: var(--surface-soft);
    border-block: 1px solid var(--line);
}

.page-history .legacy-inscription-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(40px, 6.7vw, 88px);
    align-items: center;
}

.page-history .legacy-journey {
    max-width: 620px;
}

.page-history .legacy-inscription-media {
    display: grid;
    gap: 18px;
}

.page-history .legacy-inscription-media picture,
.page-history .legacy-inscription-media img {
    display: block;
    width: 100%;
}

.page-history .legacy-lintel {
    overflow: hidden;
    border-radius: var(--radius-card);
}

.page-history .legacy-rubbing {
    padding: 14px 18px;
    background: #f3f1eb;
    border: 1px solid rgba(30, 38, 43, 0.1);
}

.page-history .legacy-inscription-media figcaption {
    margin: 0;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

.page-history .history-timeline {
    background: var(--surface);
}

.page-history .history-timeline .section-header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: left;
}

.page-history .history-timeline .timeline {
    max-width: 860px;
    margin-inline: auto;
    padding: 6px 0 0;
}

.page-history .history-timeline .timeline::before {
    top: 5px;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: var(--brand);
}

.page-history .history-timeline .timeline-item {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0 calc(50% + 28px) 36px 0;
}

.page-history .history-timeline .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 28px);
}

.page-history .history-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.page-history .history-timeline .timeline-dot {
    top: 4px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%);
    border: 2px solid var(--surface);
    box-shadow: none;
}

.page-history .history-timeline .timeline-content {
    width: 100%;
    max-width: 380px;
    padding: 24px;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.page-history .history-timeline .timeline-year {
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.page-history .history-timeline .timeline-content h4 {
    margin-bottom: 6px;
}

.page-history .history-timeline .timeline-content p {
    color: var(--muted);
    line-height: 1.75;
}

html.lang-en .page-history .page-banner h1 {
    white-space: nowrap;
}

html.lang-en .page-history main .en-text {
    font-size: inherit;
    opacity: 1;
}

@media (max-width: 768px) {
    .page-history .legacy-feature-grid,
    .page-history .legacy-inscription-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .page-history .legacy-portrait {
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }

    .page-history .legacy-story,
    .page-history .legacy-journey {
        max-width: none;
    }

    .page-history .legacy-story h2,
    .page-history .legacy-journey h2 {
        margin-bottom: 18px;
        font-size: 1.8rem;
    }

    .page-history .legacy-story p,
    .page-history .legacy-journey p {
        font-size: 0.96rem;
        line-height: 1.82;
    }

    .page-history .legacy-inscription-media {
        gap: 12px;
    }

    .page-history .legacy-rubbing {
        padding: 10px 12px;
    }

    .page-history .history-timeline .section-header {
        margin-bottom: 30px;
    }

    .page-history .history-timeline .timeline {
        padding-top: 0;
    }

    .page-history .history-timeline .timeline::before {
        left: 5px;
        transform: none;
    }

    .page-history .history-timeline .timeline-item,
    .page-history .history-timeline .timeline-item:nth-child(even) {
        display: block;
        padding: 0 0 28px 24px;
    }

    .page-history .history-timeline .timeline-dot {
        left: 5px;
    }

    .page-history .history-timeline .timeline-content {
        max-width: none;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .page-history .history-timeline .timeline-content p {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    html.lang-en .page-history .page-banner h1 {
        font-size: 2rem;
    }
}


.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* ==================== 时间线 ==================== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    max-width: 450px;
}

.timeline-year {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 时间线内双语 */
.timeline-content .en-text {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 6px;
}

.timeline-content img {
    width: 100%;
    max-height: 300px;
    object-fit: scale-down;
    border-radius: 8px;
    background: #f0f2f5;
    display: block;
}

/* ==================== 成果展示 ==================== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: var(--shadow-lg);
}

.page-home .home-evidence .achievements-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 24px);
    margin-bottom: 0;
    border: 0;
}

.page-home .home-evidence .achievement-card {
    padding: 30px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(23, 33, 31, 0.1);
    display: flex;
    min-height: 220px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-evidence .achievement-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow:
        0 14px 30px rgba(23, 33, 31, 0.14),
        0 0 0 2px rgba(200, 146, 46, 0.16),
        0 0 22px rgba(200, 146, 46, 0.22);
}

/* 企业卡片 */
.enterprise-card {
    padding: 30px 20px;
}
.enterprise-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}
.enterprise-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.page-achievements .enterprise-list {
    width: 100%;
}

.enterprise-note {
    margin-top: 30px;
    text-align: center;
}

.enterprise-note p {
    color: var(--muted);
    font-size: 0.95rem;
}

.page-achievements .timeline-content picture {
    display: block;
    margin-top: 15px;
}

.page-achievements .cta-section .hero-buttons,
.page-program .cta-section .hero-buttons {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .enterprise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== 引用区块 ==================== */
.quote-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 50px;
    border-radius: var(--radius-card);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-mark {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 150px;
    opacity: 0.1;
}
.quote-title {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
.quote-text {
    font-size: 1.2rem;
    line-height: 2;
    opacity: 0.95;
    margin-bottom: 30px;
}
.quote-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ==================== 信息提示框 ==================== */
.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(26,95,122,0.05);
    border-radius: var(--radius-card);
    border-left: 4px solid var(--primary-color);
}
.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.info-box ul {
    color: var(--text-light);
    line-height: 2.2;
    padding-left: 20px;
    margin: 0;
}

/* ==================== 联系信息卡片 ==================== */
.contact-card {
    padding: 22px 25px;
    background: rgba(26,95,122,0.05);
    border-radius: var(--radius-card);
    border-left: 3px solid var(--primary-color);
}
.contact-card-gold {
    padding: 22px 25px;
    background: rgba(212,168,67,0.07);
    border-radius: var(--radius-card);
    border-left: 3px solid var(--accent-color, #d4a843);
}
.contact-card h4,
.contact-card-gold h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.contact-card-info {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 2;
}

.contact-card > div,
.contact-card-gold > div {
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 2;
}

.contact-card > div span:first-child,
.contact-card-gold > div span:first-child {
    color: var(--muted);
}

.contact-card a,
.contact-card-gold a {
    color: var(--brand);
}

/* ==================== 捐赠提醒框 ==================== */
.donate-notice {
    margin-top: 16px;
    padding: 14px 18px;
    background: #fff8e1;
    border-radius: var(--radius-card);
    border-left: 3px solid #f0b429;
    font-size: 0.88rem;
    color: #7a5c00;
    line-height: 1.8;
}

.donate-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .donate-options-grid {
        grid-template-columns: 1fr;
    }

    .donate-card {
        min-width: 0;
    }
}

/* ==================== 荣誉奖项框 ==================== */
.award-box {
    margin-top: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(26,95,122,0.08));
    border-radius: var(--radius-card);
    border-left: 4px solid var(--accent-color, #d4a843);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.award-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.award-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.award-desc {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.7;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.page-home .home-evidence .achievement-icon {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    line-height: 1;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.achievement-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ==================== 国际化项目 ==================== */
.international-section {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.program-banner {
    background:
        linear-gradient(135deg, rgba(15, 81, 79, 0.9), rgba(200, 146, 46, 0.78)),
        url('../images/D1.jpeg') center / cover;
}

.program-benefits {
    background: linear-gradient(135deg, var(--footer), var(--brand-strong));
    color: var(--surface);
}

.program-benefits .vision-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
}

.program-benefits .vision-icon {
    background: linear-gradient(135deg, var(--accent), #e6b84d);
}

.program-benefits .vision-card h4 {
    color: var(--accent);
}

.program-benefits .vision-card p {
    color: rgba(255, 255, 255, 0.85);
}

.itinerary-list {
    max-width: 900px;
    margin-inline: auto;
}

.international-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
}

.page-home .home-program {
    background: var(--footer);
}

.page-home .home-program::before {
    display: none;
}

.page-home .home-program .international-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(44px, 7vw, 88px);
}

.page-home .home-program .highlight-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: none;
}

.international-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.international-content h2 {
    color: white;
    margin-bottom: 20px;
}

.international-content p {
    margin-bottom: 20px;
    line-height: 2;
    opacity: 0.9;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-card);
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h4 {
    color: var(--gold-color);
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    opacity: 0.95;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==================== 中国发展机遇 ==================== */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.opportunity-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.opportunity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.opportunity-card-content {
    padding: 30px;
}

.opportunity-card-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.opportunity-card-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.page-home .home-honors .opportunity-grid {
    gap: 24px;
}

.page-home .home-honors .section-header {
    max-width: 920px;
}

.page-home .home-honors .section-desc {
    max-width: 860px;
    margin: 16px auto 0;
}

.page-home .home-honors .opportunity-card {
    background: transparent;
    box-shadow: none;
}

.page-home .home-honors .opportunity-card:hover {
    transform: none;
    box-shadow: none;
}

.page-home .home-honors .opportunity-card-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
}

.page-home .home-honors .opportunity-card-label {
    position: absolute;
    z-index: 1;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    margin: 0;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(18, 63, 61, 0.92);
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.page-home .home-honors .opportunity-card img {
    display: block;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 0;
}

.page-home .home-honors .opportunity-card-content {
    padding: 18px 4px 0;
}

.page-home .home-honors .opportunity-card-content p {
    margin: 0;
}

/* ==================== 愿景理念 ==================== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vision-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: var(--radius-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

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

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.vision-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.page-home .home-values {
    padding-block: 64px;
    background: var(--surface);
}

.page-home .home-values .section-header {
    margin-bottom: 28px;
}

.page-home .home-values .vision-grid {
    gap: clamp(16px, 2.2vw, 32px);
    border: 0;
}

.page-home .home-values .vision-card {
    padding: 24px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
}

.page-home .home-values .vision-card::before {
    display: none;
}

.page-home .home-values .vision-card:hover {
    transform: none;
    box-shadow: none;
}

.page-home .home-values .vision-card h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.page-home .home-values .vision-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-home .home-values .vision-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    box-shadow: 0 14px 28px rgba(23, 107, 104, 0.16);
}

.page-vision .vision-card {
    padding: 50px 30px;
    border-radius: var(--radius-card);
}

.page-vision .vision-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.page-vision .vision-card h4 {
    font-size: 1.5rem;
}

.page-vision .vision-card p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.vision-mission-wrap {
    max-width: 900px;
    margin-inline: auto;
}

.vision-mission-copy {
    padding: 50px;
    background: var(--surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.vision-mission-copy h3 {
    margin-bottom: 25px;
    color: var(--brand);
    font-size: 1.6rem;
}

.vision-mission-copy p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 2;
}

.vision-mission-copy p:last-child {
    margin-bottom: 0;
}

.vision-exchange-title {
    margin-bottom: 20px;
    color: var(--brand);
}

/* ==================== 城市列表样式 ==================== */
.city-list-section {
    background: var(--light-color);
    padding: 80px 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.city-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-card .city-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.city-card .city-name-en {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.city-card .city-year {
    font-size: 0.85rem;
    color: var(--gold-color);
    margin-top: 8px;
    font-weight: 600;
}

/* ==================== 页脚 ==================== */
.footer {
    padding: 56px 0 24px;
    background: var(--footer);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
}

.footer-brand h3 {
    color: var(--gold-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==================== 联系表单 ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-intro {
    margin-bottom: 30px;
    color: var(--muted);
    line-height: 2;
}

.social-contact-panel {
    margin-top: 10px;
    padding: 30px 25px;
    background: rgba(23, 107, 104, 0.05);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-card);
}

.social-contact-panel h4 {
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 1.05rem;
}

.social-contact-list,
.contact-card-list {
    display: flex;
    flex-direction: column;
}

.social-contact-list {
    gap: 14px;
    color: var(--ink);
    line-height: 1.6;
}

.social-contact-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-contact-list > div > span {
    font-size: 1.5rem;
}

.social-contact-list strong,
.contact-card a {
    color: var(--brand);
}

.social-contact-list strong + div {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card-list {
    gap: 16px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
}

.contact-form-title {
    margin-bottom: 25px;
    color: var(--brand);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.captcha-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

#captchaQuestion {
    padding: 8px 16px;
    background: rgba(23, 107, 104, 0.08);
    border-radius: var(--radius-card);
    color: var(--brand);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.captcha-controls #captcha {
    width: 120px;
    padding: 8px 12px;
    text-align: center;
}

#captchaRefresh {
    min-width: 44px;
    min-height: 44px;
    padding: 6px 10px;
    border: 2px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(23, 107, 104, 0.08);
    color: var(--brand);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

#captchaRefresh:hover {
    background: rgba(23, 107, 104, 0.15);
}

.honeypot-field {
    position: absolute;
    top: -9999px;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.form-submit {
    width: 100%;
}

.form-submit.is-submitting {
    opacity: 0.6;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-card);
    background: #d4edda;
    color: #155724;
    text-align: center;
}

.form-success.is-visible {
    display: block;
}

/* ==================== 页面Banner ==================== */
.page-banner {
    min-height: 300px;
    display: grid;
    place-items: end start;
    padding: 120px 0 56px;
    background: var(--brand-strong);
    color: #fff;
}

.page-banner > div {
    width: min(calc(100% - 40px), var(--content));
    margin-inline: auto;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .about-grid,
    .international-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .home-values .vision-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .page-home .home-evidence .achievements-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .page-home .home-values .vision-card {
        padding-inline: 18px;
    }

    .page-home .home-evidence .achievement-card {
        padding-inline: 12px;
    }
    
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: auto;
        height: calc(100svh - 80px);
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .navbar.menu-open .mobile-menu-btn {
        display: none;
    }

    .navbar.menu-open .mobile-menu-close {
        display: grid;
        position: relative;
        z-index: 1002;
    }

    .page-home .hero {
        min-height: 0;
        padding-top: 80px;
        background: #247f84;
    }

    .page-home .hero-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .page-home .hero-media {
        height: auto;
        aspect-ratio: auto;
    }

    .page-home .hero-media img {
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .page-home .hero-panel {
        align-self: start;
        display: block;
        width: calc(100% - 32px);
        padding-block: 18px 20px;
        text-align: center;
    }

    .page-home .hero-badge {
        margin-bottom: 8px;
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    .page-home .hero-name {
        margin-bottom: 2px;
        font-size: 1.9rem;
    }

    .page-home .hero-calligraphy {
        width: min(260px, 100%);
        margin: 0 auto 4px;
    }

    .page-home .hero h1 {
        max-width: 11ch;
        margin: 0 auto 14px;
        font-size: 1.75rem;
        line-height: 1.2;
        white-space: normal;
        text-wrap: balance;
    }

    html.lang-en .page-home .hero h1 {
        max-width: 22ch;
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .page-home .home-intro .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }

    .page-home .home-intro .about-image,
    .page-home .home-intro .about-content {
        width: 100%;
        min-width: 0;
    }

    .page-home .home-intro .about-image picture,
    .page-home .home-intro .about-image img {
        display: block;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .page-home .hero-actions {
        justify-content: center;
    }

    .page-home .hero-actions .btn {
        min-height: 44px;
        padding: 10px 28px;
        font-size: 1rem;
    }

    .page-home .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        margin-top: 14px;
    }

    .page-home .stat-number {
        font-size: 1.65rem;
    }

    .page-home .stat-label {
        min-height: 2.4em;
        margin-top: 5px;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .achievements-grid,
    .vision-grid,
    .opportunity-grid,
    .city-grid {
        grid-template-columns: 1fr;
    }

    .page-home .home-values .vision-grid,
    .page-home .home-evidence .achievements-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-evidence .achievements-grid {
        gap: 14px;
    }

    .page-home .home-values .vision-card {
        padding: 22px 14px;
        border: 0;
    }

    .page-home .home-evidence .achievement-card {
        padding: 22px 16px;
        border: 1px solid transparent;
        border-radius: var(--radius-card);
    }

    .page-home .home-evidence .achievement-card:last-child {
        grid-column: 1 / -1;
        width: calc((100% - 14px) / 2);
        justify-self: center;
    }

    .page-home .home-program .international-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-home .home-program .highlight-box {
        padding: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .section {
        padding-block: var(--space-section);
    }
    
    .lang-toggle-btn {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .page-banner {
        min-height: 220px;
        padding: 104px 0 36px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-brand,
    .footer-links:last-child {
        grid-column: 1 / -1;
    }
}

/* ==================== 动画 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.page-home .fade-in,
.page-history .fade-in {
    opacity: 1;
    transform: none;
}

/* ==================== 国际项目专属样式 ==================== */
.target-audience {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.audience-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ==================== CTA区域 ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-home .home-cta {
    padding-block: 72px;
    background: var(--brand-strong);
}

.page-home .home-cta .hero-actions {
    justify-content: center;
}

/* ==================== 照片画廊 ==================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.page-home .home-memories .photo-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.page-home .home-memories .gallery-item {
    border-radius: var(--radius-card);
    box-shadow: none;
}

.page-home .home-memories .gallery-item:hover {
    transform: none;
    box-shadow: none;
}

.page-home .home-memories .gallery-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item .gallery-caption {
        opacity: 1;
    }

    .page-home .home-memories .photo-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 28px;
    }

    .page-home .home-memories .gallery-caption {
        padding: 10px;
        font-size: 0.78rem;
    }
}

/* 成长对比 */
.growth-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.growth-compare .growth-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.growth-compare .growth-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.growth-compare .growth-arrow {
    font-size: 2rem;
    color: var(--gold-color);
}

.growth-compare .growth-label {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==================== 志愿者报名 ==================== */
.volunteer-type-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.page-volunteer .volunteer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 40px;
}

.volunteer-option {
    padding: 40px;
    background: var(--surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.volunteer-option-primary {
    border-top: 4px solid var(--brand);
}

.volunteer-option-accent {
    border-top: 4px solid var(--accent);
}

.volunteer-option h3,
.volunteer-option h4,
.volunteer-option strong {
    color: var(--brand);
}

.volunteer-option h3 {
    margin-bottom: 5px;
}

.volunteer-option > p {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.volunteer-option > p:first-of-type {
    font-size: 0.9rem;
}

.volunteer-option h4 {
    margin-bottom: 12px;
}

.volunteer-gain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.volunteer-gain-grid h4 {
    margin-bottom: 10px;
    color: var(--brand);
}

.volunteer-gain-grid p,
.volunteer-signup-help {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.volunteer-signup {
    padding: 40px 20px;
    text-align: center;
}

.volunteer-qr-card {
    display: inline-block;
    padding: 30px;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.volunteer-qr-image {
    display: block;
    width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: var(--radius-card);
}

.volunteer-signup-help {
    margin-top: 20px;
}

.volunteer-type-card:hover,
.volunteer-type-card.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.volunteer-type-card .type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.volunteer-type-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.volunteer-type-card .type-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-color);
    margin: 15px 0;
}

/* ==================== 捐赠 ==================== */
.donate-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.page-donate .donate-card > h3 {
    margin-bottom: 8px;
    color: var(--brand);
}

.page-donate .donate-card-copy {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.8;
}

.page-donate .donate-benefits {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-card);
    background: rgba(23, 107, 104, 0.05);
    text-align: left;
}

.page-donate .donate-benefits h4 {
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 0.9rem;
}

.page-donate .donate-benefits ul {
    margin: 0;
    padding-left: 16px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.donation-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 30px;
    max-width: 900px;
    margin-inline: auto;
}

.donation-channel {
    padding: 36px;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.donation-channel-bank {
    border-top: 4px solid var(--brand);
}

.donation-channel-online {
    border-top: 4px solid var(--accent);
}

.donation-channel h3 {
    margin-bottom: 20px;
    color: var(--brand);
    font-size: 1.2rem;
}

.donation-bank-details {
    padding: 20px;
    border-radius: var(--radius-card);
    background: rgba(23, 107, 104, 0.05);
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 2.2;
}

.donation-bank-details span,
.donation-url {
    color: var(--muted);
}

.donation-bank-note {
    margin-top: 16px;
    padding: 14px 18px;
    border-left: 3px solid #f0b429;
    border-radius: var(--radius-card);
    background: #fff8e1;
    color: #7a5c00;
    font-size: 0.88rem;
    line-height: 1.8;
}

.donation-channel-online ol {
    margin: 0 0 16px;
    padding-left: 20px;
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 2.4;
}

.donation-channel-online .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9rem;
}

.donate-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.donate-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.donate-amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 0 0 20px;
}

.donate-amount-btn {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-card);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.donate-amount-btn:hover,
.donate-amount-btn.active,
.donate-amount-btn.selected {
    border-color: var(--primary-color);
    background: rgba(26, 95, 122, 0.05);
}

/* ==================== 行程日程 ==================== */
.itinerary-day {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.page-program .itinerary-day {
    min-width: 0;
}

.itinerary-day .day-number {
    background: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.itinerary-day .day-number small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.itinerary-day .day-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
}

.itinerary-day .day-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.itinerary-day .day-content .location-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ==================== 国际志愿者档案 ==================== */
.volunteer-profile {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.volunteer-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.volunteer-profile img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.volunteer-profile .profile-content {
    padding: 25px;
}

.volunteer-profile .profile-country {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(42, 157, 143, 0.1);
    color: var(--secondary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.volunteer-profile h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.volunteer-profile p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ==================== Achievements evidence page ==================== */
.page-achievements .fade-in {
    opacity: 1;
    transform: none;
}

.page-achievements .achievements-summary .section-header,
.page-achievements .evidence-gallery .section-header,
.page-achievements .institutions-section .section-header,
.page-achievements .annual-history .section-header {
    max-width: 820px;
    margin-inline: auto;
}

.page-achievements .achievement-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-block: 1px solid var(--line);
}

.page-achievements .achievement-stat {
    min-width: 0;
    padding: 30px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.page-achievements .achievement-stat:nth-child(3n) {
    border-right: 0;
}

.page-achievements .achievement-stat:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.page-achievements .achievement-stat .achievement-number {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-achievements .footprint-band {
    padding-block: 64px;
    background: var(--surface);
}

.page-achievements .footprint-band .section-header {
    margin-bottom: 30px;
}

.page-achievements .footprint-band .city-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    border-block: 1px solid var(--line);
}

.page-achievements .footprint-band .city-card {
    min-width: 0;
    padding: 20px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-achievements .footprint-band .city-card:hover {
    transform: none;
    box-shadow: none;
}

.page-achievements .footprint-band .city-card:nth-child(5n) {
    border-right: 0;
}

.page-achievements .footprint-band .city-card:nth-last-child(-n + 5) {
    border-bottom: 0;
}

.page-achievements .evidence-gallery .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.page-achievements .evidence-gallery .gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    box-shadow: none;
}

.page-achievements .evidence-gallery .gallery-item:hover {
    transform: none;
    box-shadow: none;
}

.page-achievements .evidence-gallery .gallery-caption {
    opacity: 1;
}

.page-achievements .institutions-section {
    background: var(--surface-soft);
}

.page-achievements .enterprise-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}

.page-achievements .enterprise-item {
    min-width: 0;
    padding: 22px;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
    overflow-wrap: anywhere;
}

.page-achievements .enterprise-item h4 {
    margin-bottom: 7px;
    color: var(--brand);
    font-size: 1rem;
    line-height: 1.35;
}

.page-achievements .enterprise-item p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.page-achievements .annual-timeline {
    max-width: 760px;
    margin-inline: auto;
    padding: 0;
}

.page-achievements .annual-timeline::before {
    top: 6px;
    bottom: 0;
    left: 5px;
}

.page-achievements .annual-timeline .timeline-item,
.page-achievements .annual-timeline .timeline-item:nth-child(even) {
    display: block;
    margin: 0;
    padding: 0 0 34px 28px;
}

.page-achievements .annual-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.page-achievements .annual-timeline .timeline-dot {
    top: 5px;
    left: 5px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--brand);
    box-shadow: none;
}

.page-achievements .annual-timeline .timeline-content {
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-achievements .annual-timeline .timeline-year {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.page-achievements .annual-timeline .timeline-content h4 {
    margin-bottom: 6px;
}

.page-achievements .annual-timeline .timeline-content p {
    color: var(--muted);
    line-height: 1.68;
}

.page-achievements .annual-timeline .timeline-content picture {
    margin-top: 14px;
}

.page-achievements .annual-timeline .timeline-content img {
    width: 100%;
    max-height: 220px;
    border-radius: 4px;
    object-fit: cover;
}

.page-achievements .annual-timeline .award-box {
    display: block;
    padding: 14px 16px;
    border-radius: 4px;
    background: var(--surface);
}

@media (max-width: 768px) {
    .page-achievements .achievement-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-achievements .achievement-stat {
        padding: 22px 12px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .page-achievements .achievement-stat:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .page-achievements .achievement-stat:nth-child(2n) {
        border-right: 0;
    }

    .page-achievements .achievement-stat:nth-last-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .page-achievements .achievement-stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .page-achievements .footprint-band {
        padding-block: 52px;
    }

    .page-achievements .footprint-band .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-achievements .footprint-band .city-card {
        padding: 16px 10px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .page-achievements .footprint-band .city-card:nth-child(5n) {
        border-right: 1px solid var(--line);
    }

    .page-achievements .footprint-band .city-card:nth-child(2n) {
        border-right: 0;
    }

    .page-achievements .footprint-band .city-card:nth-last-child(-n + 5) {
        border-bottom: 1px solid var(--line);
    }

    .page-achievements .footprint-band .city-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .page-achievements .evidence-gallery .photo-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .page-achievements .evidence-gallery .gallery-caption {
        padding: 9px;
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .page-achievements .enterprise-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-achievements .enterprise-item {
        padding: 16px 12px;
    }

    .page-achievements .enterprise-item h4 {
        font-size: 0.92rem;
    }

    .page-achievements .enterprise-item p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .page-achievements .annual-timeline .timeline-item,
    .page-achievements .annual-timeline .timeline-item:nth-child(even) {
        padding: 0 0 28px 24px;
    }

    .page-achievements .annual-timeline .timeline-content p {
        font-size: 0.92rem;
    }
}

/* ==================== 2026 program journey ==================== */
.page-program .fade-in {
    opacity: 1;
    transform: none;
}

.page-program .program-intro .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(40px, 6vw, 76px);
}

.page-program .program-intro .about-image {
    border-radius: var(--radius-card);
    box-shadow: none;
}

.page-program .program-intro .about-image img {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.page-program .program-features .opportunity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.page-program .program-features .opportunity-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.page-program .program-features .opportunity-card:hover {
    transform: none;
    box-shadow: none;
}

.page-program .program-features .opportunity-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.page-program .program-features .opportunity-card-content {
    padding: 22px;
}

.page-program .program-features .opportunity-card-content h4 {
    margin-bottom: 10px;
}

.page-program .program-audience {
    padding-block: 72px;
    background: var(--surface);
}

.page-program .program-audience .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border-block: 1px solid var(--line);
}

.page-program .program-audience .audience-card {
    min-width: 0;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    text-align: left;
    box-shadow: none;
}

.page-program .program-audience .audience-card:last-child {
    border-right: 0;
}

.page-program .program-audience .audience-card:hover {
    transform: none;
    box-shadow: none;
}

.page-program .program-audience .audience-card h4 {
    margin-bottom: 9px;
}

.page-program .program-benefits {
    padding-block: 68px;
    background: var(--footer);
}

.page-program .program-benefits .section-header {
    margin-bottom: 30px;
}

.page-program .program-benefits .vision-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.page-program .program-benefits .vision-card {
    min-width: 0;
    padding: 24px 20px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    text-align: left;
    box-shadow: none;
}

.page-program .program-benefits .vision-card:last-child {
    border-right: 0;
}

.page-program .program-benefits .vision-card::before {
    display: none;
}

.page-program .program-benefits .vision-card:hover {
    transform: none;
    box-shadow: none;
}

.page-program .program-benefits .vision-card h4 {
    margin-bottom: 9px;
    color: var(--accent);
}

.page-program .program-benefits .vision-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.65;
}

.page-program .program-itinerary .itinerary-list {
    max-width: 920px;
}

.page-program .program-itinerary .itinerary-day {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 22px;
}

.page-program .program-itinerary .day-number {
    width: 88px;
    height: 88px;
    background: var(--brand);
    font-size: 1.35rem;
}

.page-program .program-itinerary .day-content {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.page-program .program-itinerary .location-tag {
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--surface-soft);
}

@media (max-width: 768px) {
    .page-program .program-intro .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .page-program .program-features .opportunity-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        border-top: 1px solid var(--line);
    }

    .page-program .program-features .opportunity-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .page-program .program-features .opportunity-card img {
        width: 100%;
        height: 100%;
        min-height: 170px;
        aspect-ratio: auto;
    }

    .page-program .program-features .opportunity-card-content {
        min-width: 0;
        padding: 16px;
    }

    .page-program .program-features .opportunity-card-content h4 {
        font-size: 0.96rem;
        line-height: 1.35;
        text-wrap: balance;
    }

    .page-program .program-features .opportunity-card-content p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .page-program .program-audience {
        padding-block: 52px;
    }

    .page-program .program-audience .audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-program .program-audience .audience-card {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .page-program .program-audience .audience-card:last-child {
        border-bottom: 0;
    }

    .page-program .program-audience .audience-card h4 {
        font-size: 1rem;
        text-wrap: balance;
    }

    .page-program .program-audience .audience-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .page-program .program-benefits {
        padding-block: 52px;
    }

    .page-program .program-benefits .vision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-program .program-benefits .vision-card {
        padding: 18px 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .page-program .program-benefits .vision-card:nth-child(2n) {
        border-right: 0;
    }

    .page-program .program-benefits .vision-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .page-program .program-benefits .vision-card h4 {
        font-size: 0.9rem;
        line-height: 1.35;
        text-wrap: balance;
    }

    .page-program .program-benefits .vision-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .page-program .program-itinerary .itinerary-day {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        margin-bottom: 18px;
    }

    .page-program .program-itinerary .day-number {
        width: 100%;
        min-height: 52px;
        height: auto;
        padding: 12px 16px;
        border-radius: var(--radius-card) var(--radius-card) 0 0;
        align-items: flex-start;
    }

    .page-program .program-itinerary .day-content {
        width: 100%;
        padding: 18px 16px;
        border-top: 0;
        border-radius: 0 0 var(--radius-card) var(--radius-card);
    }
}

/* ==================== Volunteer pathways ==================== */
.page-volunteer .fade-in {
    opacity: 1;
    transform: none;
}

.page-volunteer .volunteer-types .volunteer-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.page-volunteer .volunteer-type {
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--line);
    border-top-width: 4px;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: none;
    overflow-wrap: anywhere;
}

.page-volunteer .volunteer-type h3 {
    font-size: 1.55rem;
}

.page-volunteer .volunteer-type li {
    min-width: 0;
}

.page-volunteer .volunteer-requirements {
    margin: 0 0 20px;
    padding-inline-start: 24px;
    list-style: decimal;
}

.page-volunteer .volunteer-requirements > li {
    display: list-item;
    padding-block: 6px;
    padding-inline-start: 4px;
    color: var(--muted);
}

.page-volunteer .volunteer-requirements > li::marker {
    color: var(--brand);
    font-weight: 700;
}

.page-volunteer .volunteer-quota {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--surface-soft);
}

.page-volunteer .volunteer-gain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border-block: 1px solid var(--line);
    list-style: none;
}

.page-volunteer .volunteer-gain {
    min-width: 0;
    padding: 24px 20px;
    border-right: 1px solid var(--line);
    background: transparent;
    overflow-wrap: anywhere;
}

.page-volunteer .volunteer-gain:last-child {
    border-right: 0;
}

.page-volunteer .volunteer-gain h4 {
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 1rem;
    line-height: 1.4;
}

.page-volunteer .volunteer-gain p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.page-volunteer section.volunteer-qr .volunteer-signup {
    display: grid;
    grid-template-columns: 280px minmax(0, 420px);
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: left;
}

.page-volunteer section.volunteer-qr .volunteer-qr-card {
    display: block;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: none;
}

.page-volunteer section.volunteer-qr img.volunteer-qr-image {
    width: 238px;
    height: 238px;
    margin-inline: auto;
    border-radius: 4px;
}

.page-volunteer section.volunteer-qr .volunteer-signup-help {
    min-width: 0;
    margin-top: 0;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .page-volunteer .volunteer-types .volunteer-options {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .page-volunteer .volunteer-type {
        padding: 24px 20px;
    }

    .page-volunteer .volunteer-type h3 {
        font-size: 1.35rem;
    }

    .page-volunteer .volunteer-gain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-volunteer .volunteer-gain {
        padding: 18px 12px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .page-volunteer .volunteer-gain:nth-child(2n) {
        border-right: 0;
    }

    .page-volunteer .volunteer-gain:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .page-volunteer .volunteer-gain h4 {
        font-size: 0.9rem;
    }

    .page-volunteer .volunteer-gain p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .page-volunteer section.volunteer-qr .volunteer-signup {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        text-align: center;
    }

    .page-volunteer section.volunteer-qr .volunteer-qr-card {
        width: min(280px, 100%);
        margin-inline: auto;
    }
}

/* ==================== Donation choices ==================== */
.page-donate .fade-in {
    opacity: 1;
    transform: none;
}

.page-donate .donation-program-grid,
.page-donate .donation-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.page-donate .donation-methods .section-title {
    max-width: 760px;
}

.page-donate .donation-program,
.page-donate .donation-method {
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--brand);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: none;
    text-align: left;
    overflow-wrap: anywhere;
}

.page-donate .donation-program-flexible,
.page-donate .donation-channel-online {
    border-top-color: var(--accent);
}

.page-donate .donation-program:hover {
    border-color: var(--line);
    border-top-color: var(--brand);
    transform: none;
    box-shadow: none;
}

.page-donate .donation-program-flexible:hover {
    border-top-color: var(--accent);
}

.page-donate .donation-program-label {
    margin-bottom: 10px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.page-donate .donation-program-icon,
.page-donate .donation-channel-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
    font-size: 2.25rem;
    line-height: 1;
}

.page-donate .donation-program > h3,
.page-donate .donation-method > h3 {
    margin-bottom: 12px;
    color: var(--brand);
}

.page-donate .donate-card-copy {
    margin-bottom: 24px;
}

.page-donate .donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
}

.page-donate .donation-amounts .donate-amount-btn {
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    color: var(--brand);
    font-size: 0.88rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.page-donate .donation-amounts .donate-amount-btn:hover,
.page-donate .donation-amounts .donate-amount-btn:focus-visible,
.page-donate .donation-amounts .donate-amount-btn.selected {
    border-color: var(--brand);
    background: var(--surface-soft);
}

.page-donate .donate-benefits {
    margin-top: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.page-donate .donation-method-grid {
    max-width: none;
    margin-inline: 0;
}

.page-donate .donation-bank-details {
    padding: 18px 0;
    border-block: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.page-donate .donation-bank-note {
    margin-top: 16px;
    padding: 0 0 0 16px;
    border-radius: 0;
    background: transparent;
}

.page-donate .donation-channel-online .btn {
    min-height: 44px;
    border-radius: 4px;
}

.page-donate .donation-notes-content {
    max-width: none;
    padding: 28px 0;
    border-block: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
    background: transparent;
}

@media (max-width: 768px) {
    .page-donate .donation-program-grid,
    .page-donate .donation-method-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .page-donate .donation-program,
    .page-donate .donation-method {
        padding: 24px 20px;
    }

    .page-donate .donation-amounts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-donate .donation-methods .section-title {
        font-size: 1.85rem;
    }
}

/* ==================== Contact form ==================== */
.page-contact .fade-in {
    opacity: 1;
    transform: none;
}

.page-contact .contact-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
}

.page-contact .contact-details,
.page-contact .contact-form {
    min-width: 0;
    overflow-wrap: anywhere;
}

html.lang-en:not([data-controls-localized="true"]) .page-contact .contact-form {
    visibility: hidden;
}

.page-contact .contact-form {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: none;
}

.page-contact .contact-form input,
.page-contact .contact-form select,
.page-contact .contact-form textarea,
.page-contact .contact-form button {
    min-height: 44px;
}

.page-contact .contact-form input,
.page-contact .contact-form select,
.page-contact .contact-form textarea {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.page-contact .contact-form textarea {
    min-height: 152px;
    resize: vertical;
}

.page-contact .contact-form .form-submit {
    border-radius: 4px;
}

.page-contact #captchaQuestion {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    letter-spacing: 0;
}

.page-contact #captchaRefresh {
    border-radius: 4px;
}

@media (max-width: 768px) {
    .page-contact .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .page-contact .contact-form {
        padding: 22px 18px;
    }

    .page-contact .captcha-controls {
        display: grid;
        grid-template-columns: minmax(90px, 0.75fr) minmax(150px, 1.25fr) 44px;
        gap: 8px;
    }

    .page-contact .captcha-controls #captcha {
        width: 100%;
        padding-inline: 10px;
    }

    .page-contact #captchaQuestion {
        padding-inline: 8px;
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* ==================== Vision narrative ==================== */
.page-vision .fade-in,
.page-vision .fade-in-up {
    opacity: 1;
    transform: none;
    animation: none;
}

.page-vision .vision-keyword-list {
    border-bottom: 1px solid var(--line);
}

.page-vision .vision-keyword {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 28px;
    min-width: 0;
    padding: 36px 0;
    border-top: 1px solid var(--line);
}

.page-vision .vision-index {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.page-vision .vision-keyword-content {
    min-width: 0;
    overflow-wrap: anywhere;
}

.page-vision .vision-keyword-content h3 {
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 1.5rem;
}

.page-vision .vision-keyword-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.page-vision .vision-keyword-content strong {
    color: var(--ink);
}

.page-vision .vision-mission {
    background: var(--surface-soft);
}

.page-vision .vision-mission-copy {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-vision .vision-global {
    background: var(--surface);
}

.page-vision .vision-global .about-image img {
    aspect-ratio: 800 / 514;
}

@media (max-width: 768px) {
    .page-vision .vision-keyword {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        padding: 26px 0;
    }

    .page-vision .vision-index {
        font-size: 1.5rem;
    }

    .page-vision .vision-keyword-content h3 {
        font-size: 1.3rem;
    }

    html.lang-en .page-vision .section-title {
        max-width: 20ch;
        margin-inline: auto;
        font-size: 1.9rem;
        line-height: 1.25;
    }
}


/* ==================== Card-led visual corrections ==================== */
.page-program .program-audience .audience-grid {
    gap: 20px;
    border: 0;
}

.page-program .program-audience .audience-card {
    position: relative;
    padding: 30px 26px;
    border: 1px solid rgba(23, 107, 104, 0.18);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(23, 33, 31, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-program .program-audience .audience-card:last-child {
    border-right: 1px solid rgba(23, 107, 104, 0.18);
}

.page-program .program-audience .audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 146, 46, 0.72);
    box-shadow: 0 16px 36px rgba(23, 107, 104, 0.14), 0 0 0 1px rgba(200, 146, 46, 0.14);
}

.page-program .program-audience .audience-icon,
.page-program .program-benefits .vision-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    font-size: 1.65rem;
    line-height: 1;
}

.page-program .program-audience .audience-icon {
    background: linear-gradient(135deg, rgba(23, 107, 104, 0.13), rgba(200, 146, 46, 0.18));
    box-shadow: 0 8px 20px rgba(23, 107, 104, 0.12);
}

.page-program .program-benefits .vision-grid {
    gap: 18px;
    border: 0;
}

.page-program .program-benefits .vision-card,
.page-program .program-benefits .vision-card:last-child {
    position: relative;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-program .program-benefits .vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 184, 77, 0.82);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.23), 0 0 22px rgba(230, 184, 77, 0.15);
}

.page-program .program-benefits .vision-icon {
    background: linear-gradient(135deg, var(--accent), #f1c76a);
    box-shadow: 0 10px 22px rgba(200, 146, 46, 0.22);
}

.page-achievements .achievement-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border: 0;
}

.page-achievements .achievement-stat {
    min-width: 0;
    padding: 28px 20px;
    border: 1px solid rgba(23, 107, 104, 0.16);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(23, 33, 31, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-achievements .achievement-stat:nth-child(3n),
.page-achievements .achievement-stat:nth-last-child(-n + 3) {
    border-right: 1px solid rgba(23, 107, 104, 0.16);
    border-bottom: 1px solid rgba(23, 107, 104, 0.16);
}

.page-achievements .achievement-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 146, 46, 0.72);
    box-shadow: 0 16px 36px rgba(23, 107, 104, 0.14), 0 0 0 1px rgba(200, 146, 46, 0.12);
}

.page-achievements .achievement-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    border-radius: 50%;
    line-height: 1;
}

.page-achievements .achievement-stat-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(23, 107, 104, 0.13), rgba(200, 146, 46, 0.2));
    box-shadow: 0 8px 20px rgba(23, 107, 104, 0.12);
    font-size: 1.65rem;
}

.page-achievements .footprint-band .city-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    border: 0;
}

.page-achievements .footprint-band .city-card,
.page-achievements .footprint-band .city-card:nth-child(5n),
.page-achievements .footprint-band .city-card:nth-last-child(-n + 5) {
    min-width: 0;
    padding: 22px 14px;
    border: 1px solid rgba(23, 107, 104, 0.15);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 9px 22px rgba(23, 33, 31, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-achievements .footprint-band .city-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 146, 46, 0.68);
    box-shadow: 0 15px 30px rgba(23, 107, 104, 0.13);
}

.page-achievements .enterprise-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    border: 0;
    background: transparent;
}

.page-achievements .enterprise-item {
    position: relative;
    min-width: 0;
    padding: 24px 20px;
    border: 1px solid rgba(23, 107, 104, 0.15);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 9px 22px rgba(23, 33, 31, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-achievements .enterprise-logo {
    display: flex;
    width: 100%;
    height: 58px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.page-achievements .enterprise-logo img {
    display: block;
    width: auto;
    max-width: min(150px, 88%);
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.page-achievements .enterprise-logo--square img {
    max-width: 54px;
    max-height: 54px;
}

.page-achievements .enterprise-item:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 146, 46, 0.68);
    box-shadow: 0 15px 30px rgba(23, 107, 104, 0.13);
}

.page-achievements .annual-timeline {
    max-width: 1100px;
    padding: 20px 0 0;
}

.page-achievements .annual-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-1px);
}

.page-achievements .annual-timeline .timeline-item,
.page-achievements .annual-timeline .timeline-item:nth-child(even) {
    position: relative;
    display: block;
    width: 50%;
    margin: 0;
    padding: 0 48px 44px 0;
}

.page-achievements .annual-timeline .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 44px 48px;
}

.page-achievements .annual-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.page-achievements .annual-timeline .timeline-dot,
.page-achievements .annual-timeline .timeline-item:nth-child(even) .timeline-dot {
    top: 28px;
    left: auto;
    right: -7px;
    width: 14px;
    height: 14px;
    border: 3px solid var(--surface-soft);
    background: var(--accent);
    box-shadow: 0 0 0 2px var(--brand);
}

.page-achievements .annual-timeline .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -7px;
}

.page-achievements .annual-timeline .timeline-content {
    max-width: none;
    padding: 24px;
    border: 1px solid rgba(23, 107, 104, 0.15);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 11px 28px rgba(23, 33, 31, 0.08);
}

.page-achievements .annual-timeline .timeline-content img {
    max-height: 260px;
    border-radius: 8px;
}

.page-donate .donation-program-icon,
.page-donate .donation-channel-icon {
    width: 56px;
    height: 56px;
    justify-content: center;
    border: 1px solid rgba(23, 107, 104, 0.14);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(23, 107, 104, 0.12), rgba(200, 146, 46, 0.2));
    box-shadow: 0 9px 22px rgba(23, 107, 104, 0.12);
    font-size: 2rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-program .program-audience .audience-grid,
    .page-program .program-benefits .vision-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .page-program .program-audience .audience-card,
    .page-program .program-audience .audience-card:last-child,
    .page-program .program-benefits .vision-card,
    .page-program .program-benefits .vision-card:last-child {
        padding: 22px 20px;
        border: 1px solid rgba(23, 107, 104, 0.18);
        border-radius: 12px;
    }

    .page-program .program-benefits .vision-card,
    .page-program .program-benefits .vision-card:last-child {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .page-achievements .achievement-stats-grid,
    .page-achievements .footprint-band .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-achievements .achievement-stat,
    .page-achievements .achievement-stat:nth-child(2n),
    .page-achievements .achievement-stat:nth-child(3n),
    .page-achievements .achievement-stat:nth-last-child(-n + 2),
    .page-achievements .achievement-stat:nth-last-child(-n + 3),
    .page-achievements .footprint-band .city-card,
    .page-achievements .footprint-band .city-card:nth-child(2n),
    .page-achievements .footprint-band .city-card:nth-child(5n),
    .page-achievements .footprint-band .city-card:nth-last-child(-n + 2),
    .page-achievements .footprint-band .city-card:nth-last-child(-n + 5) {
        border: 1px solid rgba(23, 107, 104, 0.15);
        border-radius: 12px;
    }

    .page-achievements .achievement-stat {
        padding: 22px 12px;
    }

    .page-achievements .footprint-band .city-card {
        padding: 18px 10px;
    }

    .page-achievements .enterprise-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-achievements .enterprise-item {
        padding: 17px 14px;
    }

    .page-achievements .enterprise-logo {
        height: 50px;
        margin-bottom: 10px;
    }

    .page-achievements .enterprise-logo img {
        max-width: min(124px, 92%);
        max-height: 46px;
    }

    .page-achievements .enterprise-logo--square img {
        max-width: 46px;
        max-height: 46px;
    }

    .page-achievements .annual-timeline {
        padding-top: 8px;
    }

    .page-achievements .annual-timeline::before {
        left: 12px;
        transform: none;
    }

    .page-achievements .annual-timeline .timeline-item,
    .page-achievements .annual-timeline .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 28px 42px;
    }

    .page-achievements .annual-timeline .timeline-item:last-child {
        padding-bottom: 0;
    }

    .page-achievements .annual-timeline .timeline-dot,
    .page-achievements .annual-timeline .timeline-item:nth-child(even) .timeline-dot {
        top: 24px;
        right: auto;
        left: 5px;
    }

    .page-achievements .annual-timeline .timeline-content {
        padding: 19px;
    }
}
