/* ── HOME ── */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a3a 0%, #2a4a5a 50%, #1a3a4a 100%);
    display: flex;
    align-items: flex-end
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    width: 100%;
    align-items: flex-end;
    gap: 40px
}

.hero-text {
    flex: 1
}

.hero-headline {
    font-size: 30px;
    font-weight: 700;
    color: var(--bs-white);
    line-height: 1.5;
    margin-bottom: 10px
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif;
    font-style: italic
}

.hero-scroll {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .15em;
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-scroll::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, .4)
}

/* .hero-news {
            width: 300px;
            background: rgba(255, 255, 255, .06);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .12);
            padding: 20px;
            flex-shrink: 0
        }
    
        .hero-news-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }
    
        .hero-news-item:last-child {
            border-bottom: none;
            padding-bottom: 0
        }
    
        .hero-news-date {
            font-size: 16px;
            color: var(--primary-color);
            font-family: 'Space Mono', monospace;
            margin-bottom: 4px
        }
    
        .hero-news-title {
            font-size: 16px;
            color: rgba(255, 255, 255, .85);
            line-height: 1.5;
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 8px
        }
    
        .hero-news-title span {
            flex: 1
        } */

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    gap: 6px;
    z-index: 2
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer
}

.hero-dot.active {
    background: var(--bs-white)
}

/* ── NEWS LIST ── */
/* ── 三大效益 ── */
/* ── 中心任務 ── */
/* ── 中心願景 ── */
/* ── 大事紀要 ── */
/* ── 平台服務 ── */
/* ── 首長介紹 ── */
/* ── 核心任務 ── */
/* ── 發展計畫 ── */
/* ── 組織架構 ── */
/* ── 聯絡我們 ── */
/* ── 隱私政策 ── */
.privacy-section {
    margin-bottom: 28px
}

.privacy-section-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px
}

.privacy-body {
    font-size: 18px;
    color: #444;
    line-height: 2;
    font-weight: 300
}

.privacy-body p {
    margin-bottom: 10px
}

.privacy-updated {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border)
}