@import url('../../css/fonts.css');
@charset "utf-8";

/*==================================================
  [1] Reset CSS (已修復，移除強制 14px)
==================================================*/
header, menu, nav, section, footer, body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6, pre, code,
form, fieldset, legend, input, button,
textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
fieldset, img { border: 0; }
:focus { outline: 0; }
abbr { border: 0; font-variant: normal; }
input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}
code, kbd, samp, tt { font-size: 100%; }
body { font-size: 14px; line-height: 1.5; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th { text-align: left; }
sup, sub { vertical-align: super; font-size: smaller; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: none; }
tr td { overflow: hidden; word-break: break-all; }
img { margin: 0; display: block; }
strong { font-weight: bolder; }

/* 防止手機版選單開啟時背景捲動 */
body.no-scroll { overflow: hidden; }

/*==================================================
  [2] Slick Slider Theme (統一品牌黃色)
==================================================*/
.slick-loading .slick-list { background: #fff url('../../images/ajax-loader.gif') center center no-repeat; }
.slick-prev, .slick-next {
	z-index: 10; font-size: 0; line-height: 0; position: absolute;
    top: 50%; display: block; width: 3.5vw; height: 3.5vw; padding: 0;
    transform: translateY(-50%); cursor: pointer; border: none; outline: none;
    background-color: var(--primary-yellow); border-radius: 50%;
}
.slick-prev:hover, .slick-next:hover { background-color: #fff; }
.slick-prev:hover::before, .slick-next:hover::before { border-color: var(--primary-yellow); }
.slick-prev::before, .slick-next::before {
    content: ''; display: block; width: 1vw; height: 1vw; border-top: 3px solid #fff; border-right: 3px solid #fff;
    position: absolute; top: 50%; left: 50%; background: none;
}
.slick-prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
.slick-next::before { transform: translate(-70%, -50%) rotate(45deg); }
.slick-prev { left: -5vw; }
.slick-next { right: -5vw; }

.slick-dots {
    display: flex; justify-content: center; align-items: center;
    margin-top: 2vw; list-style: none; position: absolute; bottom: -2vw; left: 0; right: 0; width: 100%;
}
.slick-dots li { width: 0.8vw; height: 0.8vw; margin: 0 0.5vw; cursor: pointer; position: relative; display: inline-block; }
.slick-dots li button { border: none; background: transparent; cursor: pointer; font-size: 0; outline: none; display: block; width: 100%; height: 100%; position: relative; }
.slick-dots li button::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #fff; border-radius: 50%; opacity: 0.5;
}
.slick-dots li.slick-active button::before { background-color: var(--primary-yellow); opacity: 1; }

@media only screen and (max-width: 1280px) {
    .slick-prev, .slick-next { width: 5vw; height: 5vw; }
    .slick-dots { bottom: -3vw; }
    .slick-dots li { width: 1.5vw; height: 1.5vw; }
}
@media only screen and (max-width: 720px) {
    .slick-prev, .slick-next { width: 10vw; height: 10vw; }
    .slick-prev { left: -2vw; }
    .slick-next { right: -2vw; }
    .slick-dots { bottom: -8vw; }
    .slick-dots li { width: 2.5vw !important; height: 2.5vw; margin: 0 1.5vw !important; }
}

/*==================================================
  🌟 載入畫面 (Loading Screen) 🌟
==================================================*/
#Loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    background-color: var(--primary-blue);
    top: 0;
    left: 0;
}
.loading-logo {
    width: 60vw;
    max-width: 350px;
    margin-bottom: 40px;
    animation: pulse 2s infinite ease-in-out;
}
.loading-progress-bar {
    width: 40vw;
    max-width: 250px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}
.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-yellow);
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}
@keyframes loadProgress {
    0% { width: 0%; }
    40% { width: 60%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .loading-logo { width: 80vw; }
    .loading-progress-bar { width: 60vw; }
}

/*==================================================
  [3] 基礎變數與全域設定 (2025 新版視覺)
==================================================*/
:root {
    --primary-blue: #00245D;
    --primary-yellow: #FFC72F;
    --footer-bg: #1C2F3D;
    --circle-red: #BF0B0B;
    --circle-blue: #1657AE;
    --text-gray: #E0E0E0;
}

*, body, h1, h2, h3, h4, p, a {
    font-family: Arial, "Helvetica Neue", "Noto Sans TC", "微軟正黑體", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--primary-blue);
    color: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
}

a { text-decoration: none; transition: all 0.3s ease; }

/*==================================================
  [4] Header & Navigation (捲動變色選單)
==================================================*/
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
    padding: 1.5vw 4vw; display: flex; justify-content: space-between;
    align-items: center; background-color: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease;
}
header.scrolled {
     background: linear-gradient(to right,  rgba(0,54,143,0.95) 0%,rgba(2,54,142,0.95) 1%,rgba(243,76,39,0.95) 100%);
     padding: 1vw 4vw; box-shadow: 0 4px 10px rgba(0,0,0,0.3); border-bottom: 1px solid #fff;
}
.logo { font-size: 1.5vw; font-weight: bold; letter-spacing: 1px; }
.logo a { color: #fff; text-decoration: none; font-size: inherit; }
header nav ul { display: flex; align-items: center; gap: 1.6vw; }
header nav ul li a { color: #fff; font-size: 0.86vw; font-weight: 500; text-align: center; line-height: 1.3; display: block; letter-spacing: 0.5px; transition: color 0.3s ease; }
header nav ul li a:hover, header nav ul li.active a { color: var(--primary-yellow); }
.nav-sub { display: block; font-size: 0.88em; font-weight: 400; opacity: 0.85; margin-top: 0.1vw; }

.lang-switch {
    border: 1px solid #fff; padding: 0.2vw 0.8vw; border-radius: 2vw;
    font-size: 0.9vw; color: #fff; display: inline-block;
}
.lang-switch:hover { background-color: #fff; color: var(--primary-blue); }

/* 漢堡選單按鈕 */
.mobile-menu-btn {
    display: none; cursor: pointer; z-index: 1000; width: 30px; height: 20px; position: relative;
}
.mobile-menu-btn span {
    display: block; width: 100%; height: 2px; background-color: #fff;
    position: absolute; left: 0; transition: all 0.3s ease; border-radius: 2px;
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }
.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/*==================================================
  [5] 共用元件 (標題圓形、按鈕)
==================================================*/
.indexSecTitle {
    display: flex; position: relative; margin-bottom: 3vw; gap: 1vw;
    align-items: center; width: 100vw; left: -10vw;
}
.indexSecTitle::before, .indexSecTitle::after {
    content: ""; height: 1px; background: #fff; display: inline-block; vertical-align: middle;
}
.indexSecTitle::before { width: 10vw; flex-shrink: 0; }
.indexSecTitle::after { flex: 1; }

.sec-title-wrap { position: relative; vertical-align: middle; padding-left: 3vw; z-index: 2; width: auto; white-space: nowrap; }
.sec-title-wrap h2 { font-size: 2.5vw; font-weight: bold; color: #fff; position: relative; z-index: 2; letter-spacing: 2px; }
.sec-title-wrap::before {
    content: ""; position: absolute; left: 0; top: -1vw; width: 6vw; height: 6vw; border-radius: 50%; z-index: 1;
}
.sec-title-wrap.red-circle::before { background-color: var(--circle-red); }
.sec-title-wrap.blue-circle::before { background-color: var(--circle-blue); }

.btn-pill {
    display: block; background-color: var(--primary-yellow); color: var(--primary-blue);
    padding: 0.4vw 5vw; border-radius: 5vw; font-weight: bold; font-size: 1vw;
    margin-top: 1.5vw; margin-left: auto; width: fit-content; text-align: center;
}
.btn-pill:hover { background-color: #fff; transform: translateY(-2px); }

/* 回頂端按鈕 */
#back-to-top {
    position: fixed; bottom: 3vw; right: 3vw; width: 3.5vw; height: 3.5vw;
    background-color: var(--primary-yellow); border-radius: 50%; display: flex;
    justify-content: center; align-items: center; cursor: pointer; z-index: 990;
    opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-5px); background-color: #fff; }
#back-to-top::before {
    content: ''; width: 0.8vw; height: 0.8vw; border-top: 3px solid var(--primary-blue);
    border-left: 3px solid var(--primary-blue); transform: translateY(20%) rotate(45deg); transition: all 0.3s ease;
}

/*==================================================
  [6] 首頁特定區塊
==================================================*/
/* KV */
#KV { position: relative; width: 100%; height: 110vh; overflow: hidden; }
.videoBgBk { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.videoBgBk img, .videoBgBk video { width: 100%; height: 100%; object-fit: cover; }
.KVTxt { position: absolute; top: 20%; right: 5%; text-align: right; color: #fff; text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); }
.kv-year { font-size: 4vw; font-weight: bold; line-height: 1; margin-bottom: 0.5vw; letter-spacing: 2px; }
.kv-title { font-size: 3.5vw; font-weight: bold; letter-spacing: 2px; margin-bottom: 0.8vw; }
.kv-subtitle { font-size: 3.5vw; font-weight: bold; letter-spacing: 4px; color: #fff; line-height: 1.2; text-transform: uppercase; }

/* Vision 上半部 */
#Vision { position: relative; transition: .5s; overflow: hidden; }
.vision-top-area { padding: 6vw 10vw 0; }
#Vision::before {
    content: ""; display: block; position: absolute; height: 10vh; width: 100%;
    top: -10vh; left: 0; transition: .5s;
}
#Vision.Sir_A { background: rgb(0, 36, 93); }
#Vision.Sir_B { background: rgb(172,49,37); }
#Vision .sec-title-wrap { transition: .5s; }
#Vision.Sir_A::before { background: linear-gradient(to bottom,  rgba(0,36,93,0) 0%,rgb(0, 36, 93) 100%); }
#Vision.Sir_B::before { background: linear-gradient(to bottom,  rgba(172,49,37,0) 0%,rgba(172,49,37,1) 100%); }

#TopManagerMenu {
    display: block; margin: 0 auto 3vw; text-align: center; padding: 0.5vw;
    border: 1px solid #fff; width: 76%; max-width: 960px; border-radius: 3vw;
}
#TopManagerMenu ul { display: flex; align-items: center; justify-content: center; }
#TopManagerMenu li { width: 50%; }
#TopManagerMenu li.active #TopManager_A { color: #00245D; }
#TopManagerMenu li a { color: #fff; font-size: 1vw; border-radius: 2.5vw; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.6vw 1vw; line-height: 1.3; min-height: 4.2vw; }
#TopManagerMenu li a .tm-name { font-size: 1.15vw; font-weight: bold; margin-bottom: 0.2vw; display: block; }
#TopManagerMenu li a .tm-title { font-size: 0.85vw; font-weight: normal; opacity: 0.95; display: block; }
#TopManagerMenu li.active a { background: var(--primary-yellow); }
#TopManagerMenu li.active #TopManager_B { color: #89332B; }

.top-manager-slider { position: relative; padding: 0 5vw; margin-bottom: 0; }
.top-manager-slider .manager-slide { display: none; }
.top-manager-slider .manager-slide.active { display: flex; }
.manager-info { width: 55%; padding-top: 7vw; margin-right: 5%; margin-bottom: 4vw; }
.manager-info h3 { font-size: 1.6vw; color: var(--primary-yellow); margin-bottom: 0.8vw; line-height: 1.45; white-space: normal; }
.TopManagerDec { line-clamp: 3; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.manager-info p { font-size: 1.1vw; line-height: 1.8; color: var(--text-gray); /* text-align: justify; */ }
.btn-sir-b { color: #89332B !important; }
.manager-photo { width: 40%; position: relative; display: flex; align-items: flex-end; }
.manager-photo img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.manager-photo h4 { position: absolute; top: 9vw; left: 72%; right: auto; width: 26vw; text-align: left; z-index: 5; }
.manager-photo h4 span:first-child { font-size: 2vw; font-weight: bold; display: block; line-height: 1.2; margin-bottom: 0.3vw; }
.manager-photo h4 span:last-child { font-size: 1.1vw; font-weight: normal; display: block; line-height: 1.35; color: var(--text-gray); }

/* Vision 下半部：委員滿版輪播 */
#OtherManagerSlider {
    padding: 4vw 10vw 6vw;
    background: url('../../images/bg_ManagerSlider.jpg') no-repeat center/cover;
    position: relative; width: 100%; overflow: hidden;
}
#OtherManagerSlider .slick-prev { left: 4vw; }
#OtherManagerSlider .slick-next { right: 4vw; }
#OtherManagerSlider .slick-dots { bottom: 3vw; }

.other-manager-card {
    display: flex !important; align-items: center; justify-content: center; gap: 5vw; padding: 2vw; outline: none;
}
.other-manager-photo-wrap {
    width: 22vw; height: 22vw; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6);
    padding: 0.8vw; flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.other-manager-photo {
    width: 100%; height: 100%; border-radius: 50%;
    background: url('../../images/bg_ManagerBg.jpg') no-repeat center/cover;
    position: relative; overflow: hidden;
}
.other-manager-photo img {
    height: 92%; width: auto; max-width: none; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%); display: block;
}
.other-manager-info { width: 50%; color: #fff; text-align: left; }
.other-manager-info h4 { font-size: 2vw; font-weight: bold; margin-bottom: 0.5vw; }
.other-manager-info p { font-size: 1.2vw; color: #A0AAB5; margin-bottom: 2vw; }
.other-manager-info h3 { font-size: 1.6vw; color: var(--primary-yellow); line-height: 1.45; margin-bottom: 1.5vw; font-weight: bold; white-space: normal; }

/* 🌟 針對 13 吋螢幕長標題防掉字處理 🌟 */
@media screen and (min-width: 1024px) {
    .other-manager-info { width: 65% !important; max-width: 900px; }
    .other-manager-info h3 { white-space: normal; }
}

.other-manager-more { display: flex; align-items: center; gap: 1.5vw; }
.other-manager-more hr { flex-grow: 1; border: 0; height: 1px; background-color: rgba(255,255,255,0.3); }
.other-manager-more a { color: #fff; font-size: 1vw; font-weight: bold; white-space: nowrap; transition: color 0.3s; letter-spacing: 1px; }
.other-manager-more a:hover { color: var(--primary-yellow); }

/* Technology 首頁特定區塊 */
#Technology {
    padding: 5vw 10vw 5vw;
    background: url('../../images/bg_indexTechnology.jpg') no-repeat center bottom/cover;
    position: relative;
    overflow: hidden;
}

#Technology .sec-title-wrap { width: 100%; margin-bottom: 3vw; }
#Technology .sec-title-wrap h2 { display: inline-block; position: relative; }
#Technology .sec-title-wrap h2::before { content: ""; position: absolute; right: calc(100% + 4.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }
#Technology .sec-title-wrap h2::after { content: ""; position: absolute; left: calc(100% + 1.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }

.tech-tags { text-align: center; margin-bottom: 2vw; position: relative; z-index: 2; }
.tech-tag { display: inline-block; border: 1px solid #fff; color: #fff; padding: 0.6vw 1.5vw; border-radius: 3vw; margin: 0.5vw; font-size: 1vw; cursor: pointer; transition: 0.3s; }
.tech-tag.active, .tech-tag:hover { background-color: var(--primary-yellow); color: var(--primary-blue); border-color: var(--primary-yellow); font-weight: bold; }

.tech-slider-wrap { width: 65%; margin: 0 auto; position: relative; z-index: 2; }
#TechSlider .slick-prev { left: -20vw; top: 13vw; transform: translateY(-50%); }
#TechSlider .slick-next { right: -20vw; top: 13vw; transform: translateY(-50%); }
.tech-slide { text-align: center; outline: none; }

.tech-circle-img { width: 26vw; height: 26vw; border-radius: 50%; overflow: hidden; margin: 0 auto 3vw; border: 4px solid #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.tech-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.tech-slide h5 { font-size: 1.2vw; color: #fff; margin-bottom: 1vw; letter-spacing: 1px; }
.tech-slide h3 { font-size: 2.2vw; color: var(--primary-yellow); margin-bottom: 2.5vw; font-weight: bold; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.tech-slide .btn-pill { margin: 0 auto; }

/* Insights 首頁特定區塊 */
#Insights { padding: 5vw 10vw 8vw; background: #010006 url('../../images/bg_indexInsights.png') no-repeat center bottom / 80%; position: relative; overflow: hidden; }
#Insights .sec-title-wrap { width: 100%; margin-bottom: 4vw; }
#Insights .sec-title-wrap h2 { display: inline-block; position: relative; }
#Insights .sec-title-wrap h2::before { content: ""; position: absolute; right: calc(100% + 4.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }
#Insights .sec-title-wrap h2::after { content: ""; position: absolute; left: calc(100% + 1.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }

#InsightSlider { width: 75%; margin: 0 auto; position: relative; z-index: 2; }
#InsightSlider .slick-prev { left: -16vw; top: 50%; transform: translateY(-50%); }
#InsightSlider .slick-next { right: -16vw; top: 50%; transform: translateY(-50%); }

.insight-slide { display: flex !important; align-items: center; justify-content: center; gap: 4vw; outline: none; }
.insight-img { width: 24vw; height: 24vw; border-radius: 50%; overflow: hidden; border: 4px solid rgba(255,255,255,0.15); box-shadow: 0 15px 35px rgba(0,0,0,0.5); flex-shrink: 0; }
.insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insight-slide:hover .insight-img img { transform: scale(1.05); }

.insight-text { width: 38vw; text-align: left; flex-grow: 1; }
.insight-text h5 { display: inline-block; border: 1px solid var(--primary-yellow); color: var(--primary-yellow); padding: 0.4vw 1.2vw; border-radius: 3vw; font-size: 0.95vw; margin-bottom: 1.5vw; }
.insight-text h3 { font-size: 2vw; color: #fff; margin-bottom: 1.5vw; line-height: 1.4; }
.insight-text p { font-size: 1.1vw; line-height: 1.8; color: var(--text-gray); /* text-align: justify; */ margin-bottom: 2vw; }
.insight-text .btn-pill { margin: 0; }

/*==================================================
  [7] Footer (頁尾 & PDF下載)
==================================================*/
footer { background-color: var(--footer-bg); padding: 0; text-align: center; }
.footer-inner { padding: 4vw 10vw 2vw; display: flex; flex-direction: column; align-items: center; }
.footer-logo { width: 25vw; margin: 0 auto 1.5vw; color: #fff; }
.footer-logo svg { width: 100%; height: auto; }
.footer-separator { width: 80%; height: 1px; background-color: #fff; margin: 0 auto 2vw; }
.footer-desc { font-size: 1vw; color: var(--text-gray); line-height: 1.8; width: 60%; margin: 0 auto 2vw; /* text-align: justify; */ }
.btn-download-pdf { display: inline-flex; align-items: center; gap: 0.5vw; background-color: transparent; border: 2px solid var(--primary-yellow); color: var(--primary-yellow); padding: 0.8vw 2vw; border-radius: 5vw; font-weight: bold; font-size: 1.1vw; margin-bottom: 3vw; transition: all 0.3s ease; text-decoration: none; }
.btn-download-pdf:hover { background-color: var(--primary-yellow); color: var(--primary-blue); }
.copyright { width: 100%; background-color: #00245D; color: #fff; padding: 1.5vw 0; font-size: 0.9vw; text-align: center; }

/*==================================================
  [8] 內頁共用樣式 (RWD 與背景處理)
==================================================*/
.Page .bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; background-size: cover; background-position: center; background-repeat: no-repeat; }
#Future .bg { background-image: url('../../images/bg_future.jpg'); }
#EventHighlights .bg { background-image: url('../../images/bg_EventHighlights.jpg'); }
#TechnologyPage .bg { background-image: url('../../images/bg_Technology.jpg'); }
#InsightsPage .bg { background-image: url('../../images/bg_Insights.jpg'); }

article.Page { padding-top: 8vw; min-height: 100vh; padding-bottom: 5vw; }

/* 麵包屑 */
#breadcrumb { display: flex; gap: 0.8vw; width: 90%; max-width: 1200px; margin: 0 auto; padding: 15px 30px; background: rgba(0, 36, 93, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.15); flex-wrap: wrap; }
#breadcrumb > div { font-size: 1vw; color: #fff; font-weight: bold; white-space: nowrap; flex-shrink: 0; margin-right: 0.4vw; }
#breadcrumb nav ol { display: flex; align-items: center; flex-wrap: wrap; margin: 0; padding: 0; row-gap: 0.8vw; }
#breadcrumb nav ol li { font-size: 1vw; color: #fff; line-height: 1.6; }
#breadcrumb nav ol li::after { content: "/"; padding: 0 0.5vw; opacity: 0.5; }
#breadcrumb nav ol li:last-child::after { display: none; }
#breadcrumb nav ol li a { text-decoration: none; color: var(--primary-yellow); transition: color 0.3s;}
#breadcrumb nav ol li a:hover { color: #fff; }

/* 內頁主標題 */
article.Page h1 { font-size: 3.5vw; text-align: center; color: #fff; padding: 4vw 5vw 3vw; text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6); letter-spacing: 2px; position: relative; z-index: 1; font-weight: bold; }
article.Page h1 span { display: block; }
article.Page h1 > span:first-child { display: inline-block !important; background: rgba(0, 36, 93, 0.85); color: var(--primary-yellow) !important; padding: 0.8vw 2.5vw; border-radius: 5vw; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); margin-bottom: 2vw !important; box-shadow: 0 4px 15px rgba(0,0,0,0.3); letter-spacing: 2px; font-size: 0.4em; }

.multi-title-pill { border-radius: 1.5vw !important; line-height: 1.6 !important; white-space: nowrap; }

/* ★ 修正：將長官姓名放得比單位職稱還要大，並加上粗體突顯層級 */
.sub-title-text { font-size: 1.35em; font-weight: bold; opacity: 1; margin-left: 0.2vw; }

.PageDec { font-size: 1.1vw; width: 80%; max-width: 1000px; color: #fff; margin: 0 auto 4vw; background: rgba(10, 15, 30, 0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 2.5vw; border-radius: 1vw; line-height: 1.8; /* text-align: justify; */ border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.Content { display: block; width: 80%; max-width: 1000px; margin: 0 auto 5vw; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); padding: 4vw; border-radius: 1vw; font-size: 1.1vw; color: #333; line-height: 1.9; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.Content p { margin-bottom: 1.5vw; /* text-align: justify; */ }
.Content h2 { font-size: 1.8em; margin-bottom: 1vw; color: var(--primary-blue); font-weight: bold; margin-top: 2.5vw; }
.Content h2:first-child { margin-top: 0; }
.Content h3 { font-size: 1.3em; color: var(--primary-blue); margin-bottom: 0.5vw; font-weight: bold; }

figure.PaperImg { margin: 2.5vw auto; text-align: center; }
figure.PaperImg img { max-width: 100%; height: auto; margin: 0 auto 0.8vw; border-radius: 0.5vw; display: block;}
figcaption.ImgNote { font-size: 1vw; color: #4b5563; text-align: center; background-color: #f3f4f6; padding: 0.8vw 1.5vw; border-radius: 0.5vw; margin: 0.5vw auto 0; max-width: 90%; border-left: 4px solid var(--primary-blue); border-right: 4px solid var(--primary-blue); line-height: 1.6; }

/* 內頁長官介紹卡片 (.ManagerBk) */
.ManagerBk { display: flex; align-items: flex-end; background: linear-gradient(135deg, #F5F7FA 0%, #E4E9F2 100%); border-radius: 1vw; padding: 0; margin-top: 5vw; box-shadow: 0 10px 30px rgba(0,36,93,0.08); position: relative; overflow: hidden; }
.ManagerTitleBk { width: 60%; padding: 5vw 4vw 4vw 5vw; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 18vw; }
.ManagerTitleBk::before { content: "“"; position: absolute; top: 0; left: 2.5vw; font-size: 14vw; color: rgba(0,36,93,0.04); font-family: serif; line-height: 1; z-index: -1; }
.ManagerJobTitle { font-size: 1.3vw; color: #555; margin-bottom: 0.8vw; border-left: 4px solid var(--primary-yellow); padding-left: 1vw; line-height: 1.5; white-space: normal; }
.ManagerTitleName { font-size: 2.5vw; font-weight: bold; color: var(--primary-blue); padding-left: 1.2vw; white-space: normal; line-height: 1.3; }
.ManagerPagePhoto { width: 40%; position: relative; display: flex; justify-content: center; align-items: flex-end; }
.ManagerPagePhoto img { width: 90%; height: auto; border-radius: 0 !important; display: block; filter: drop-shadow(-5px 5px 15px rgba(0,0,0,0.15)); }

/* 名詞速讀 */
.WordInfo { display: block; width: 100%; margin: 4vw auto; border: 2px solid var(--primary-blue); padding: 3vw; position: relative; background: #fff; border-radius: 0.5vw; box-shadow: 0 5px 15px rgba(0,36,93,0.1); }
.WordInfoTitle { position: absolute; top: -1.2vw; left: 2vw; background: var(--primary-blue); color: #fff; padding: 0.5vw 2vw; font-size: 1.1vw; font-weight: bold; border-radius: 2vw; }
dl.WordInfoBk { display: flex; align-items: flex-start; margin-top: 1vw; }
dt.WordInfo_word { font-size: 1.3vw; font-weight: bold; color: var(--primary-blue); width: 28%; padding-right: 2vw; border-right: 2px solid rgba(0,36,93,0.2); margin-right: 2vw; }
dd.WordInfo_content { font-size: 1.1vw; width: 72%; margin: 0; line-height: 1.8; /* text-align: justify; */ }

.Content .Table { width: 100%; margin: 3vw auto; border-collapse: collapse; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
caption.TableTitle { font-size: 1.2em; color: var(--primary-blue); margin-bottom: 1vw; font-weight: bold; text-align: left; }
thead.TableHead { background: var(--primary-blue); color: #fff; text-align: center; }
table.Table th, table.Table td { padding: 1.2vw; border: 1px solid #ddd; }
.Table tbody tr:nth-child(odd) { background: #fdfdfd; }
.Table tbody tr:nth-child(even) { background: #fff; }

/* 願景與展望列表頁 (FutureList) */
#FutureList { width: 90%; max-width: 1200px; margin: 0 auto 5vw; display: flex; flex-direction: column; gap: 3vw; }
#FutureList > li { display: flex; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 1vw; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
#FutureList > li:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.ManagerPhoto { width: 40%; position: relative; background: #EAEAEA; display: flex; flex-direction: column; justify-content: flex-end; }
.ManagerPhoto img { width: 100%; height: 100%; flex-grow: 1; object-fit: contain; object-position: center bottom; padding-top: 3vw; box-sizing: border-box; display: block; }
.FutureBk { width: 60%; padding: 3vw 4vw; display: flex; flex-direction: column; justify-content: center; }

/* 🌟 列表頁姓名獨立於職稱上方排版 🌟 */
.ManagerTitleGroup { display: flex; flex-direction: column; margin-bottom: 1.2vw; }
.ManagerTitleGroup .ManagerName { font-size: 1.5vw; color: var(--circle-red); font-weight: bold; letter-spacing: 2px; margin-bottom: 0.4vw; line-height: 1.2; }
.ManagerTitleGroup .ManagerTitle { font-size: 1.05vw; color: #666; line-height: 1.6; white-space: nowrap; margin-bottom: 0; font-weight: normal; }

.FutureBk .ManagerTitle { font-size: 1.4vw; color: var(--circle-red); font-weight: bold; letter-spacing: 1px; margin-bottom: 0.6vw; line-height: 1.4; }

.FutureBk h2 { font-size: 2vw; color: var(--primary-blue); margin-bottom: 1.5vw; font-weight: bold; line-height: 1.3; }
.ManagerDec { font-size: 1.05vw; color: #444; line-height: 1.8; margin-bottom: 2vw; /* text-align: justify; */ }
.FuturReadMoreLink a { display: inline-block; background: var(--primary-blue); color: #fff; padding: 0.6vw 2vw; border-radius: 3vw; font-weight: bold; font-size: 1vw; transition: all 0.3s ease; align-self: flex-start; }
.FuturReadMoreLink a:hover { background: var(--primary-yellow); color: var(--primary-blue); }

/* 技術最前線列表頁 (TechList) */
#TechList { width: 90%; max-width: 1200px; margin: 0 auto 5vw; display: grid; grid-template-columns: repeat(2, 1fr); gap: 3vw; }
#TechList li { background: linear-gradient(135deg, rgba(0, 20, 60, 0.7) 0%, rgba(0, 36, 93, 0.7) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 1vw; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; }
#TechList li a { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
#TechList li:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(255, 255, 255, 0.4); }
.TechCover { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; background: #001538; }
.TechCover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
#TechList li:hover .TechCover img { transform: scale(1.08); }
.TechInfo { padding: 2.5vw 3vw; display: flex; flex-direction: column; flex-grow: 1; }
.TechSoTitle { display: inline-block; background: var(--primary-yellow); color: var(--primary-blue); padding: 0.4vw 1.2vw; border-radius: 3vw; font-size: 0.95vw; font-weight: bold; margin-bottom: 1.5vw; width: fit-content; box-shadow: 0 2px 8px rgba(255, 199, 47, 0.3); }
.TechInfo h2 { font-size: 1.6vw; color: #fff; line-height: 1.5; font-weight: bold; margin-bottom: 1vw; transition: color 0.3s ease; }
#TechList li:hover .TechInfo h2 { color: var(--primary-yellow); }

/* 夥伴觀點列表頁 (InsightsList) */
#InsightsList { width: 90%; max-width: 1200px; margin: 0 auto 5vw; display: flex; flex-direction: column; gap: 3vw; }
#InsightsList > li { display: flex; background: linear-gradient(135deg, rgba(0, 20, 60, 0.75) 0%, rgba(0, 36, 93, 0.75) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 1vw; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
#InsightsList > li:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(255, 255, 255, 0.4); }
#InsightsList > li > a { display: flex; width: 100%; text-decoration: none; color: inherit; }
.InsCover { width: 45%; position: relative; overflow: hidden; }
.InsCover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
#InsightsList > li:hover .InsCover img { transform: scale(1.08); }
.InsDecBk { width: 55%; padding: 4vw; display: flex; flex-direction: column; justify-content: center; }
.InsCoList { display: flex; flex-wrap: wrap; gap: 0.8vw; margin-bottom: 1.5vw; }
.InsCoList span { display: inline-block; border: 1px solid var(--primary-yellow); color: var(--primary-yellow); padding: 0.4vw 1.2vw; border-radius: 3vw; font-size: 0.95vw; }
.InsDecBk h2 { font-size: 2vw; color: #fff; margin-bottom: 1.5vw; font-weight: bold; line-height: 1.4; transition: color 0.3s ease; }
#InsightsList > li:hover .InsDecBk h2 { color: var(--primary-yellow); }
.InsDecTxt { font-size: 1.05vw; color: #E0E0E0; line-height: 1.8; margin-bottom: 2.5vw; /* text-align: justify; */ }
.InsRead { display: inline-flex; align-items: center; background: var(--primary-yellow); color: var(--primary-blue); padding: 0.6vw 2vw; border-radius: 3vw; font-weight: bold; font-size: 1vw; transition: all 0.3s ease; align-self: flex-start; }
.InsRead:hover { background: #fff; }

/* 共創瞬間 (EventHighlights) 大事紀時間軸 */
#EventHighlights section > h2 { text-align: center; color: #fff; font-size: 2vw; margin-bottom: 4vw; font-weight: bold; letter-spacing: 2px; }
#EventList { width: 80%; max-width: 1000px; margin: 0 auto 5vw; display: flex; flex-direction: column; gap: 3vw; }
#EventList > li { display: flex; background: linear-gradient(135deg, rgba(0, 20, 60, 0.85) 0%, rgba(0, 36, 93, 0.85) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 1vw; padding: 3vw 4vw; box-shadow: 0 10px 30px rgba(0,0,0,0.2); align-items: flex-start; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, border-color 0.3s ease; }
#EventList > li:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); border-color: rgba(255, 255, 255, 0.3); }
.EventDate { font-size: 2.5vw; font-weight: bold; color: var(--primary-yellow); width: 20%; flex-shrink: 0; line-height: 1.2; border-right: 2px solid rgba(255,255,255,0.2); padding-right: 2vw; text-align: right; font-family: Arial, sans-serif; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.EventInfo { width: 80%; padding-left: 3vw; display: flex; flex-direction: column; gap: 2vw; }
.EventContent { font-size: 1.1vw; line-height: 1.8; color: #fff; /* text-align: justify; */ }
.EventImg { width: 100%; }
.EventImg ul { display: grid; gap: 1vw; }
.EventImg.Img_m ul { grid-template-columns: repeat(2, 1fr); }
.EventImg.Img_l ul { grid-template-columns: repeat(3, 1fr); }
.EventImg ul li a, .EventImg.Img_s > a { display: block; width: 100%; height: 0; padding-bottom: 56.25%; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; border-radius: 0.5vw; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.EventImg ul li a:hover, .EventImg.Img_s > a:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,0.4); z-index: 2; position: relative; }

/*==================================================
  [9] RWD 響應式設計 (針對平板與手機調整)
==================================================*/
@media (max-width: 1024px) {
    .other-manager-info { width: 80% !important; }
    .other-manager-info h3, .manager-info h3 { white-space: normal; font-size: 24px; line-height: 1.4; }
    .FutureBk h2 { font-size: 24px; }
    .FutureBk .ManagerTitle { font-size: 18px; }
    .Page h1 { font-size: 30px; }
    .insight-slide { flex-direction: column; }
    #TechList { grid-template-columns: 1fr; }
    .event-highlights-container {
        padding: 0 5%;
        flex-direction: column;
    }
    .event-highlights-left, .event-highlights-right {
        flex: auto;
        width: 100%;
    }
}

/*==================================================
  [X] 首頁 聚力時刻 EventHighlightsSection
==================================================*/
#EventHighlightsSection {
    padding: 5vw 10vw 8vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
#EventHighlightsSection .sec-title-wrap { margin-bottom: 4vw; width: 100%; }
#EventHighlightsSection .sec-title-wrap h2 { display: inline-block; position: relative; z-index: 2; }
#EventHighlightsSection .sec-title-wrap h2::before { content: ""; position: absolute; right: calc(100% + 4.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }
#EventHighlightsSection .sec-title-wrap h2::after { content: ""; position: absolute; left: calc(100% + 1.5vw); top: 50%; width: 100vw; height: 1px; background: #fff; }
#EventHighlightsSection .btn-pill { margin: 0 auto; }
.event-highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.event-highlights-left {
    flex: 1;
    min-width: 300px;
    color: #fff;
}
.event-highlights-left h3 {
    font-size: 2vw;
    color: #fff;
    margin-bottom: 1.5vw;
    line-height: 1.4;
    font-weight: bold;
}
.event-highlights-left p {
    font-size: 1.1vw;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2vw;
    /*text-align: justify;*/
}
.event-highlights-right {
    flex: 1.5;
    min-width: 300px;
    width: 100%;
}
.event-carousel {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.event-carousel .slick-list,
.event-carousel .slick-track {
    height: 100%;
}
.event-carousel .event-slide {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
}
.event-carousel .event-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    /* --- 手機版 Header & 漢堡選單 --- */
    header { padding: 4vw 5vw; }
    .logo { font-size: 5vw; z-index: 1000; position: relative; }
    .mobile-menu-btn { display: block; }

    header nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(0, 20, 60, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 998;
    }
    header nav.active { opacity: 1; visibility: visible; }
    header nav ul { display: flex !important; flex-direction: column; gap: 4vw; text-align: center; justify-content: center; width: 92%; }
    header nav ul li a { font-size: 4.2vw; line-height: 1.35; font-weight: 600; display: block; margin: 0 auto; }
    header nav ul li a .nav-br { display: none; }
    .nav-sub { display: block; font-size: 0.85em; font-weight: 400; opacity: 0.85; margin-top: 0.5vw; }
    .lang-switch { font-size: 4vw; padding: 1.5vw 6vw; margin-top: 2vw; display: inline-block; }

    /* --- 首頁特定區塊 RWD --- */
    .KVTxt { width: 85%; left: auto; right: 7%; text-align: right; }
    .kv-year { font-size: 10vw; }
    .kv-title { font-size: 8vw; }
    .kv-subtitle { font-size: 8vw; font-weight: bold; letter-spacing: 3px; color: #fff; line-height: 1.2; text-transform: uppercase; }

    .sec-title-wrap { white-space: normal; }
    .sec-title-wrap h2 { font-size: 6vw; }
    .sec-title-wrap::before { width: 12vw; height: 12vw; top:-3vw; }

    .vision-top-area { padding: 8vw 5vw 0; }
    .indexSecTitle { left: -5vw; width: 100vw; margin-bottom: 6vw; display: flex; align-items: center; }
    .indexSecTitle .sec-title-wrap { width: auto; max-width: 75vw; white-space: normal; }
    .indexSecTitle::before { width: 5vw; flex-shrink: 0; }
    .indexSecTitle::after { flex: 1; width: auto; }

    #TopManagerMenu { width: 100%; margin: 0 auto 6vw; padding: 1.5vw; border-radius: 8vw; }
    #TopManagerMenu li a { font-size: 3.5vw; border-radius: 6vw; padding: 2.5vw 1.5vw; min-height: auto; }
    #TopManagerMenu li a .tm-name { font-size: 4vw; margin-bottom: 0.6vw; }
    #TopManagerMenu li a .tm-title { font-size: 2.8vw; line-height: 1.3; }

    .top-manager-slider { padding: 0; }
    .top-manager-slider .manager-slide, .insight-slide, .other-manager-card { flex-direction: column; text-align: center; }
    .manager-info, .manager-photo { width: 100%; padding-top: 0vw; }
    .TopManagerDec { margin-bottom: 3vw; }
    .manager-info h3 { font-size: 4.3vw; line-height: 1.4; margin-top: 2vw; white-space: normal; }
    .manager-info h4, .manager-info p, .tech-slide h5 { font-size: 3.5vw; }
    .manager-info .btn-pill { margin: 0 auto; }
    .manager-photo h4 { top: 32vw; left: auto; right: 2vw; width: 42vw; max-width: 42vw; text-align: left; z-index: 5; }
    #Sir_A .manager-photo h4 { top: 26vw; right: -15vw; }
    #Sir_B .manager-photo h4 { top: 33vw; right: -8vw; }
    .manager-photo h4 span:first-child { font-size: 5.5vw; line-height: 1.3; margin-bottom: 1vw; }
    .manager-photo h4 span:last-child { font-size: 3.5vw; line-height: 1.3; font-weight: normal; }

    #OtherManagerSlider { padding: 6vw 5vw 15vw; }
    .other-manager-photo-wrap { width: 60vw; height: 60vw; margin: 0 auto 5vw; }
    .other-manager-info { width: 90% !important; padding: 30px 20px; }
    .other-manager-info h4 { font-size: 6vw; }
    .other-manager-info p { font-size: 3.5vw; margin-bottom: 4vw; }
    .other-manager-info h3 { font-size: 4.3vw; line-height: 1.4; margin-bottom: 5vw; white-space: normal; }
    .other-manager-more a { font-size: 3.5vw; }
    #OtherManagerSlider .slick-dots { bottom: 10vw; }

    /* 🌟 首頁技術最前線 RWD 🌟 */
    #Technology { padding: 8vw 5vw 8vw; overflow: hidden; }

    #Technology .sec-title-wrap { margin-bottom: 6vw; white-space: normal; }
    #Technology .sec-title-wrap h2::before { right: calc(100% + 5vw); width: 100vw; }
    #Technology .sec-title-wrap h2::after { left: calc(100% + 3vw); width: 100vw; }

    .tech-slider-wrap { width: 85%; }
    #TechSlider .slick-prev { left: -7.75vw; top: 32.5vw; }
    #TechSlider .slick-next { right: -7.75vw; top: 32.5vw; }
    .tech-circle-img { width: 65vw; height: 65vw; margin: 0 auto 6vw; }

    .tech-slide h5 { font-size: 4vw; margin-bottom: 2vw; }
    .tech-slide h3 { font-size: 6vw; margin-bottom: 6vw; line-height: 1.4; }

    /* 🌟 首頁夥伴觀點 RWD 🌟 */
    #Insights { padding: 8vw 5vw 20vw; background-size: 200% auto; overflow: hidden; }

    #Insights .sec-title-wrap { margin-bottom: 6vw; white-space: normal; }
    #Insights .sec-title-wrap h2::before { right: calc(100% + 5vw); width: 100vw; }
    #Insights .sec-title-wrap h2::after { left: calc(100% + 3vw); width: 100vw; }

    #InsightSlider { width: 85%; }
    #InsightSlider .slick-prev { left: -7.75vw; top: 25vw; }
    #InsightSlider .slick-next { right: -7.75vw; top: 25vw; }

    .insight-img { width: 50vw; height: 50vw; border-radius: 50%; margin: 0 auto 5vw; }
    .insight-text { width: 100%; text-align: center; }
    .insight-text h5 { font-size: 3vw; padding: 1.5vw 3vw; margin-bottom: 3vw; }
    .insight-text h3 { font-size: 5.5vw; margin-bottom: 4vw; }
    .insight-text p { font-size: 3.8vw; margin-bottom: 5vw; }
    .insight-text .btn-pill { margin: 0 auto; }

    /* --- 聚力時刻 EventHighlightsSection RWD --- */
    #EventHighlightsSection { padding: 8vw 5vw 15vw; overflow: hidden; }
    #EventHighlightsSection .sec-title-wrap h2::before { right: calc(100% + 5vw); width: 100vw; }
    #EventHighlightsSection .sec-title-wrap h2::after { left: calc(100% + 3vw); width: 100vw; }
    .event-highlights-left h3 { font-size: 6vw; margin-bottom: 4vw; }
    .event-highlights-left p { font-size: 3.8vw; margin-bottom: 6vw; }
    .event-carousel { border-width: 2px; }

    .btn-pill { font-size: 3.5vw; padding: 2vw 6vw; }
    .tech-tag { font-size: 3vw; padding: 1.5vw 3vw; }

    /* Footer & 元件 RWD */
    .footer-logo { width: 60vw; }
    .footer-separator { width: 95%; }
    .footer-desc { width: 90%; font-size: 3.5vw; }
    .btn-download-pdf { font-size: 3.5vw; padding: 2vw 5vw; }
    .copyright { padding: 4vw 0; font-size: 3vw; }

    /* --- 內頁共用 RWD 調整 --- */
    article.Page { padding-top: 20vw; }
    #breadcrumb { width: 90%; padding: 4vw 5vw; border-radius: 2vw; flex-direction: column !important; align-items: flex-start !important; gap: 1.8vw !important; }
    #breadcrumb > div { font-size: 3.5vw; margin-right: 0; }
    #breadcrumb nav ol li { font-size: 3.5vw; line-height: 1.5; }
    #breadcrumb nav ol { row-gap: 1.5vw; }

    article.Page h1 { font-size: 6vw; line-height: 1.35; padding: 6vw 5vw 4vw; word-wrap: break-word; }
    article.Page h1 > span:first-child { font-size: 0.6em !important; margin-bottom: 4vw !important; padding: 2.5vw 5vw; line-height: 1.4; }

    .multi-title-pill { border-radius: 4vw !important; line-height: 1.5 !important; white-space: nowrap; }

    /* ★ 修正：手機版的長官姓名也需同步放大及加上左邊距 ★ */
    .sub-title-text { font-size: 1.35em; margin-left: 1vw; }

    .PageDec { width: 90%; font-size: 3.8vw; padding: 5vw; border-radius: 3vw; }

    .Content { width: 90%; font-size: 3.8vw; padding: 6vw; border-radius: 3vw; }
    .Content h2 { font-size: 6vw; margin-top: 5vw; }
    .Content h3 { font-size: 5vw; }
    figure.PaperImg { margin: 6vw 0; }
    figcaption.ImgNote { font-size: 3.5vw;
        color: #4b5563;
        /* text-align: justify; */
        background-color: #f3f4f6;
        padding: 1vw 4vw;
        border-radius: 2vw;
        margin: 2vw auto 0;
        max-width: 100%;
        line-height: 1.6;
    }

    /* 內頁長官卡片 ManagerBk RWD */
    .ManagerBk { flex-direction: column; align-items: center; padding-top: 8vw; border-radius: 3vw; }
    .ManagerTitleBk { width: 100%; padding: 0 6vw 6vw; text-align: center; min-height: auto; }
    .ManagerTitleBk::before { left: 50%; transform: translateX(-50%); top: -6vw; font-size: 35vw; }
    .ManagerJobTitle { border-left: none; border-bottom: 3px solid var(--primary-yellow); padding-left: 0; padding-bottom: 2vw; display: inline-block; max-width: 100%; margin-bottom: 3vw; font-size: 4vw; line-height: 1.4; white-space: normal; }
    .ManagerTitleName { font-size: 7.5vw; padding-left: 0; white-space: normal; line-height: 1.3; }
    .ManagerPagePhoto { width: 85%; margin: 0 auto; }
    .ManagerPagePhoto img { width: 100%; border-radius: 0; }

    /* 🌟 各單元列表 RWD (包含列表頁姓名獨立與職稱換行) 🌟 */
    #FutureList { width: 90%; gap: 6vw; }
    #FutureList > li { flex-direction: column; border-radius: 3vw; }
    .ManagerPhoto { width: 100%; height: auto; display: flex; justify-content: flex-end; }
    .ManagerPhoto img { width: 100%; height: auto; object-fit: contain; object-position: center bottom; padding-top: 6vw; box-sizing: border-box; display: block; }
    .FutureBk { width: 100%; padding: 6vw; }

    .ManagerTitleGroup { margin-bottom: 3vw; }
    .ManagerTitleGroup .ManagerName { font-size: 5.5vw; margin-bottom: 1vw; }
    .ManagerTitleGroup .ManagerTitle { font-size: 3.5vw; white-space: normal; line-height: 1.5; }

    .FutureBk h2 { font-size: 5.5vw; margin-bottom: 3vw; }
    .FutureBk .ManagerTitle { font-size: 4.5vw; margin-bottom: 2vw; line-height: 1.5; }
    .ManagerDec { font-size: 3.5vw; margin-bottom: 4vw; }
    .FuturReadMoreLink a { font-size: 3.5vw; padding: 2vw 6vw; border-radius: 5vw; }

    #TechList { grid-template-columns: 1fr; gap: 6vw; }
    #TechList li { border-radius: 3vw; }
    .TechInfo { padding: 5vw; }
    .TechSoTitle { font-size: 3.5vw; padding: 1vw 4vw; margin-bottom: 3vw; }
    .TechInfo h2 { font-size: 5.5vw; }

    #InsightsList { width: 90%; gap: 6vw; }
    #InsightsList > li > a { flex-direction: column; }
    .InsCover { width: 100%; aspect-ratio: 16/9; }
    .InsDecBk { width: 100%; padding: 6vw; }
    .InsCoList { gap: 2vw; margin-bottom: 3vw; }
    .InsCoList span { font-size: 3vw; padding: 1vw 3vw; }
    .InsDecBk h2 { font-size: 5.5vw; margin-bottom: 3vw; }
    .InsDecTxt { font-size: 3.8vw; margin-bottom: 4vw; }
    .InsRead { font-size: 3.5vw; padding: 2vw 6vw; }

    /* 大事紀 RWD */
    #EventHighlights section > h2 { font-size: 6vw; margin-bottom: 6vw; }
    #EventList { width: 90%; gap: 5vw; }
    #EventList > li { flex-direction: column; padding: 6vw 5vw; gap: 4vw; border-radius: 3vw; }
    .EventDate { width: 100%; border-right: none; border-bottom: 2px solid rgba(255,255,255,0.2); padding-right: 0; padding-bottom: 3vw; font-size: 10vw; text-align: left; }
    .EventInfo { width: 100%; padding-left: 0; gap: 4vw; }
    .EventContent { font-size: 3.8vw; }
    .EventImg.Img_m ul, .EventImg.Img_l ul { grid-template-columns: repeat(2, 1fr); gap: 2vw; }
    .EventImg ul li a, .EventImg.Img_s > a { border-radius: 1.5vw; }

    /* 共用元件與表格 */
    .WordInfo { margin: 6vw auto; padding: 6vw 5vw 5vw; border-radius: 2vw; }
    .WordInfoTitle { font-size: 3.5vw; top: -3.5vw; left: 4vw; padding: 1vw 4vw; }
    dl.WordInfoBk { flex-direction: column; align-items: flex-start; }
    dt.WordInfo_word { width: 100%; border-right: none; border-bottom: 2px solid rgba(0,36,93,0.2); padding-right: 0; padding-bottom: 2vw; margin-bottom: 3vw; font-size: 5vw; }
    dd.WordInfo_content { width: 100%; font-size: 3.8vw; }
    table.Table th, table.Table td { font-size: 3.5vw; padding: 3vw; }

    /* 回頂端按鈕手機版尺寸 */
    #back-to-top { width: 12vw; height: 12vw; bottom: 5vw; right: 5vw; }
    #back-to-top::before { width: 3vw; height: 3vw; }
}