/* =========================================
   全局基礎設定

   font-awesome(5.15.4)  https://fontawesome.com/v5/search?p=2&ic=free-collection
   ========================================= */
body {
   /* 使用思源宋體，並加入 Mac/iOS (Songti TC) 與 Windows (PMingLiU) 的原生明體作為備用防呆 */
    font-family: 'Noto Serif TC', 'Songti TC', 'PMingLiU', 'MingLiU', serif;
    background-color: #283a56; /* 深褐色紀念背景#2b211c */
    color: #e0d8c3;
    line-height: 1.6;
}

.text-color {
  background: linear-gradient(90deg, #ff8fc7 0%, #ffe680 45%, #ffffff 75%, #5c93e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}/*彩色漸層，粉紅、黃、白、天藍*/


/* =========================================
   頂部導覽列 (Header)
   ========================================= */
/*.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.site-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
}
.site-title:hover {
    color: #f3c258;
    text-decoration: none;
}*/

/* =========================================
   頂部導覽列 (Header) - 精緻靠右版
   ========================================= */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    /* 質感漸層與毛玻璃效果，讓後方背景微糊化，凸顯文字 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgb(233 226 226 / 18%));
    backdrop-filter: blur(3px); 
    border-bottom: 1px solid rgb(255 255 245 / 53%); /* 極細微的下邊框增加立體感 */
}

/* 使用 Flexbox 進行排版 */
.header-nav {
    display: flex;
    justify-content: flex-end; /* 強制將內部元素靠右對齊 */
    align-items: center;
}

/* 網站標題文字設計 */
.site-title {
    color: #f8f9fa;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 2px; /* 增加字距，提升視覺優雅度 */
    text-decoration: none;
    position: relative;
    padding: 0 15px;
    transition: color 0.4s ease;
    border-left: 3px solid #ffc107; /* 黃色色碼可依網頁現有設計微調 */
}

/* 移除預設的底線，改用精緻的自訂動態底線 */
.site-title:hover, 
.site-title:focus {
    color: #f3c258; /* 滑過時轉為典雅的金色 */
    text-decoration: none;
}

/* 隱藏的自訂動態底線 (利用偽元素製作) */
.site-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0; /* 動畫起始點設為右側 */
    background-color: #f3c258;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* 平滑的緩動函數 */
}

/* 當滑鼠經過時，底線從右向左展開 */
.site-title:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}


/* =========================================
   純 CSS 無 JS 主視覺與輪播 (Hero Slider)
   ========================================= */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 65vh;       /* 佔螢幕高度 85% */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 輪播背景圖設定 */
.css-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* 預設隱藏 */
    animation: fadeSlider 20s infinite; /* 15秒循環動畫 */
    z-index: 1;
}

/* 圖片路徑與延遲時間 (如需換圖請改此處) */
.slide-1 { background-image: url('../img/hero/h1.png'); animation-delay: 0s; }
.slide-2 { background-image: url('../img/hero/h2.png'); animation-delay: 5s; }
.slide-3 { background-image: url('../img/hero/h3.png'); animation-delay: 10s; }
.slide-4 { background-image: url('../img/hero/h4.png'); animation-delay: 15s; }
.slide-5 { background-image: url('../img/hero/h5.png'); animation-delay: 20s; }

/* 透明度與放大動畫 (Ken Burns Effect) */
@keyframes fadeSlider {
    0%   { opacity: 0; transform: scale(1); }
    10%  { opacity: 1; }
    33%  { opacity: 1; transform: scale(1.05); }
    43%  { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1); }
}

/* 黑色漸層遮罩，保護文字可讀性 */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* 漂浮於圖片上方的文字設定 */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 15px;
}

.hero-text h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-btn {
    border: 2px solid #fff;
    padding: 12px 25px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.hero-btn:hover {
    background-color: #f3c258;
    border-color: #f3c258;
    color: #2b211c;
}

/* 手機版主標題字體縮小 */
@media (max-width: 768px) {
    .hero-text h2 { font-size: 1.8rem; }
    .hero-wrapper { height: 70vh; }
}


/* 按鈕樣式 */
.btn-journey {
    display: inline-block;
    background-color: #60719f; /* 使用您 footer 的藍灰色系 */
    color: #FFFFFF !important;
    padding: 12px 40px;
    font-size: 14pt;
    text-decoration: none !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    font-weight: bold;
}



/* =========================================
   「引導留言」效果，建議將 「呼吸效果」 與 「懸停位移」 結合(非必要)
   ========================================= */
/* 綜合樣式 */
.hero-btn {
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse-border 2.5s infinite; /* 持續微動吸引目光 */
}

.hero-btn:hover {
    animation: none; /* 滑過時停止跳動，保持穩定點擊 */
    transform: scale(1.08) translateY(-3px); /* 放大並往上 */
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

@keyframes pulse-border {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* =========================================
   趙民德 所長 給親朋好友的一封信
   ========================================= */
/* Farewell letter: visually aligned with the memorial tribute */
        #farewell-letter .eulogy-box {
            padding: 26px 30px;
        }

        #farewell-letter .eulogy-toolbar {
            padding-bottom: 12px;
            margin-bottom: 14px !important;
        }

        #farewell-letter .eulogy-title {
            font-size: 1.15rem;
            line-height: 1.6;
            letter-spacing: 1px;
        }

        #farewell-letter .eulogy-title i {
            margin-right: 6px;
            font-size: 0.95em;
        }

        #farewell-letter .eulogy-title-en {
            font-size: 0.72em;
            margin-left: 6px;
            letter-spacing: 0.4px;
        }

        #farewell-letter .farewell-letter-body p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #e6e0d7;
            text-align: justify;
            margin-bottom: 0.5rem;
        }

        #farewell-letter .farewell-letter-body p:last-child {
            margin-bottom: 0;
        }

        #farewell-letter .farewell-quote {
            color: #f4e3b1;
            text-align: center !important;
            margin: 0.9rem 0 0.75rem !important;
            font-weight: 500;
            letter-spacing: 0.4px;
        }

        #farewell-letter .eulogy-signature {
            margin-top: 0.5rem;
            font-size: 0.92rem;
            line-height: 1.5;
        }

        #farewell-letter .farewell-dates {
            color: #c9c1b5;
            font-weight: 400;
            font-size: 0.88em;
            letter-spacing: 0;
        }

        @media (max-width: 768px) {
            #farewell-letter .eulogy-box {
                padding: 22px 20px;
            }

            #farewell-letter .eulogy-title {
                font-size: 1.05rem;
            }

            #farewell-letter .eulogy-title-en {
                display: block;
                margin: 2px 0 0 1.45rem;
            }

            #farewell-letter .farewell-letter-body p {
                font-size: 0.9rem;
                line-height: 1.8;
                text-align: left;
                margin-bottom: 0.58rem;
            }
        }

/* =========================================
   官方追悼文 (Eulogy Box)－中英文切換版
   ========================================= */
.eulogy-box {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(243, 194, 88, 0.26);
    border-radius: 10px;
    padding: 30px 34px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.eulogy-toolbar {
    border-bottom: 1px solid rgba(243, 194, 88, 0.18);
    padding-bottom: 16px;
}

.eulogy-title {
    color: #f6ce78;
    font-family: 'Noto Serif TC', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.eulogy-title-en {
    color: #f4e3b1;
    font-size: 0.82em;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 8px;
}

.eulogy-language-switch {
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.eulogy-lang-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.eulogy-lang-btn {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #d7dce6;
    padding: 7px 18px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}

.eulogy-lang-btn:hover {
    color: #fff4cf;
}

#eulogy-lang-zh:focus-visible ~ .eulogy-toolbar .eulogy-lang-btn-zh,
#eulogy-lang-en:focus-visible ~ .eulogy-toolbar .eulogy-lang-btn-en {
    outline: 2px solid rgba(255, 231, 164, 0.8);
    outline-offset: 2px;
}

#eulogy-lang-zh:checked ~ .eulogy-toolbar .eulogy-lang-btn-zh,
#eulogy-lang-en:checked ~ .eulogy-toolbar .eulogy-lang-btn-en {
    background: rgba(246, 206, 120, 0.18);
    color: #ffe7a4;
    box-shadow: inset 0 0 0 1px rgba(246, 206, 120, 0.55);
}

.eulogy-content {
    display: none;
}

#eulogy-lang-zh:checked ~ .eulogy-zh,
#eulogy-lang-en:checked ~ .eulogy-en {
    display: block;
}

.eulogy-section {
    margin-bottom: 1.5rem;
}

.eulogy-section-title {
    color: #ffd97d;
    font-family: 'Noto Serif TC', serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 1px;
    margin: 0 0 0.8rem;
    padding-left: 12px;
    border-left: 3px solid rgba(255, 217, 125, 0.72);
    text-shadow: 0 0 12px rgba(255, 217, 125, 0.08);
}

.eulogy-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e6e0d7;
    text-align: justify;
    margin-bottom: 0.5rem;
}

.eulogy-en p {
    font-family: 'Noto Serif TC', serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #d5d9e2;
}

.eulogy-en .eulogy-section-title {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.3px;
}

.eulogy-signature {
    margin-top: 2.2rem;
    margin-bottom: 0 !important;
    color: #f4e3b1 !important;
    font-weight: 700;
    text-align: right !important;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .eulogy-box {
        padding: 24px 20px;
    }

    .eulogy-title {
        font-size: 1.15rem;
    }

    .eulogy-title-en {
        display: block;
        margin: 4px 0 0;
    }

    .eulogy-language-switch {
        align-self: flex-start;
    }

    .eulogy-lang-btn {
        padding: 7px 15px;
    }

    .eulogy-box p {
        text-align: left;
    }
}

/* =========================================
   留言板區塊 (Message Board)
   ========================================= */
.spad {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 說明文字框 */
.intro-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(243, 194, 88, 0.3);
    padding: 10px;
    border-radius: 8px;
}
.intro-box p {
    color: #bfae9e;
    margin-bottom: 0.5rem;
}

/* 個別留言卡片設計 */
.message-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #f3c258; /* 左側金色高光邊框 */
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.message-header h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}

.message-header small {
    color: #a39587;
    font-size: 0.9rem;
}

.message-body p {
    color: #cfc5b6;
    font-size: 0.9rem;
    text-align: justify;
    margin-bottom: 0;
}

/* =========================================
   增加的留言板區塊 (Message Board)(文字過長用)
   ========================================= */
/* 隱藏核取方塊本身 */
.read-more-state {
    display: none;
}

/* 預設文字容器狀態：限制高度並隱藏溢出（設定為15em提供較大初始高度） */
.read-more-wrap {
    max-height: 14.5em; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
    margin-bottom: 0;
}

/* 展開按鈕的樣式：自訂 Bootstrap Primary 按鈕樣式並靠右 */
.read-more-trigger {
    cursor: pointer;
    display: block;
    width: fit-content; /* 使按鈕寬度貼合文字 */
    margin-left: auto; /* 將區塊推至最右側 */
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    background-color: #c89602;
    color: #fff;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: bolder;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border-radius: 50px;
}

/* 按鈕懸停效果 */
.read-more-trigger:hover {
    background-color:#60719f;
    border-color: #0a58ca;
    color: #fff;
}

/* 當勾選框被勾選時（按下按鈕），取消高度限制 */
.read-more-state:checked ~ .read-more-wrap {
    max-height: 5000px;
}

/* 自動切換按鈕文字 */
.read-more-trigger::before {
    content: "+ Read More...";
}

.read-more-state:checked ~ .read-more-trigger::before {
    content: "- Read Less";
}

/* 照片微調：加寬並設定橫式比例 */
.header-photo {
    width: 280px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
}




/* =========================================
   留言相簿 (Message Gallery) 樣式
   ========================================= */
.message-gallery {
    border-top: 1px solid rgba(243, 194, 88, 0.2); /* 加一條細線隔開文字與照片 */
    padding-top: 5px;
}

/* 縮圖外框設定 */
.thumb-link {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background-color: #000;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 縮圖圖片設定 */
.thumb-link img {
    width: 100%;
    height: 120px;       /* 固定高度讓網格整齊 */
    object-fit: cover;   /* 圖片裁切填滿，不變形 */
    opacity: 0.8;        /* 預設稍微變暗 */
    transition: all 0.3s ease;
}

/* 滑鼠經過效果 */
.thumb-link:hover {
    border-color: #f3c258; /* 框線變金黃色 */
    transform: scale(1.02);
}

.thumb-link:hover img {
    opacity: 1;          /* 圖片恢復亮度 */
}

/* 手機版適配：縮圖高度調小 */
@media (max-width: 576px) {
    .thumb-link img {
        height: 100px;
    }
}

/* =========================================
   影片區塊 (Vedio Legacy)
   ========================================= */

.video-container {
    width: 100%;
    height: 350px; /* 強制設定高度 */
    background-color: #000000; /* 影片載入前的底色 */
    padding:30px; 
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* 移除 iframe 預設的底部空白間隙 */
}


/* =========================================
   照片集區塊 (Pictorial Legacy)
   ========================================= */
.photos-section {   
    background-color: #241b17; /* 稍深於主背景，增加層次感 */
}

.photo-section-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 2.2rem;
    color: #f3c258;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.photo-section-subtitle {
    font-family: 'Noto Serif TC', serif;
    font-style: italic;
    color: #a39587;
    font-size: 0.95rem;
}

/* 自定義響應式網格系統 */
.photo-custom-grid {
    display: grid;
    gap: 12px; /* 照片間距 */
    /* 預設：電腦版每列 8 張 */
    grid-template-columns: repeat(8, 1fr);
}

/* 縮圖外框 */
.photo-thumb {
    aspect-ratio: 1 / 1; /* 強制照片成正方形，整齊美觀 */
    overflow: hidden;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 確保不同比例的照片都不會變形 */
    opacity: 0.7;
    transition: all 0.5s ease;
    filter: grayscale(30%); /* 略微去色，增加歷史感 */
}

/* 滑鼠經過效果 */
.photo-thumb:hover {
    border-color: #f3c258;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 10;
}

.photo-thumb:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1); /* 輕微放大 */
}

/* 學誌特刊 */
.bg-ss {
    background-image: url('../img/SSLOGO.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* =========================================
   響應式斷點設定 (8 -> 6 -> 3 -> 2)
   ========================================= */

/* 中大型螢幕 (平板電腦橫向) - 每列 6 張 */
@media (max-width: 1400px) {
    .photo-custom-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 平板直向 - 每列 3 張 */
@media (max-width: 992px) {
    .photo-custom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .photo-section-title { font-size: 1.8rem; }
}

/* 手機版 - 每列 2 張 */
@media (max-width: 576px) {
    .photo-custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* =========================================
   口述歷史影片 (Oral History)
   ========================================= */
.oral-history-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(243, 194, 88, 0.08), transparent 30%),
        linear-gradient(180deg, #241b17 0%, #283a56 100%);
    border-top: 1px solid rgba(243, 194, 88, 0.18);
}
.oral-history-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 78%);
}
.oral-history-section .container { position: relative; z-index: 1; max-width: 1320px; }
.oral-history-heading { max-width: 760px; margin: 0 auto 34px; }
.oral-history-eyebrow { display:block; color:#c7a966; font-family:'Noto Sans TC',sans-serif; font-size:.68rem; letter-spacing:.28em; margin-bottom:8px; }
.oral-history-heading h3 { color:#f3c258; font-size:1.78rem; font-weight:500; letter-spacing:.12em; margin:0 0 7px; }
.oral-history-heading p { color:#aeb7c6; font-size:.84rem; font-style:italic; letter-spacing:.035em; margin:0; }
.oral-history-rule { display:block; width:46px; height:1px; margin:17px auto 0; background:linear-gradient(90deg,transparent,#f3c258,transparent); }
.oral-video-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.oral-video-card { min-width:0; background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025)); border:1px solid rgba(243,194,88,.16); box-shadow:0 12px 32px rgba(0,0,0,.18); transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
.oral-video-card:hover { transform:translateY(-4px); border-color:rgba(243,194,88,.48); box-shadow:0 18px 38px rgba(0,0,0,.3); }
.oral-video-media { position:relative; display:block; aspect-ratio:16/9; overflow:hidden; background:#121820; border-bottom:1px solid rgba(243,194,88,.14); }
.oral-video-media video { width:100%; height:100%; object-fit:cover; display:block; opacity:.72; filter:saturate(.68) sepia(.10); transition:transform .5s ease,opacity .4s ease,filter .4s ease; pointer-events:none; }
.oral-video-card:hover .oral-video-media video { transform:scale(1.035); opacity:.9; filter:saturate(.9); }
.oral-video-shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,15,22,.02) 25%,rgba(10,15,22,.64) 100%); }
.oral-video-play { position:absolute; left:50%; top:50%; width:46px; height:46px; transform:translate(-50%,-50%); display:grid; place-items:center; border-radius:50%; color:#f7d98f; background:rgba(18,24,33,.68); border:1px solid rgba(247,217,143,.7); box-shadow:0 5px 22px rgba(0,0,0,.3); transition:.3s ease; }
.oral-video-play i { font-size:.8rem; margin-left:2px; }
.oral-video-card:hover .oral-video-play { background:#f3c258; color:#283a56; transform:translate(-50%,-50%) scale(1.08); }
.oral-video-index { position:absolute; right:12px; bottom:9px; color:rgba(255,255,255,.62); font-family:Georgia,serif; font-size:.72rem; letter-spacing:.16em; }
.oral-video-content { padding:18px 20px 20px; }
.oral-video-kicker { margin:0 0 7px!important; color:#bda76f!important; font-family:'Noto Sans TC',sans-serif; font-size:.62rem!important; letter-spacing:.13em; }
.oral-video-content h4 { font-size:1rem; font-weight:600; line-height:1.55; margin:0 0 9px; letter-spacing:.025em; }
.oral-video-content h4 a { color:#f4e3b1; text-decoration:none; transition:color .25s ease; }
.oral-video-content h4 a:hover { color:#f3c258; }
.oral-video-content > p:not(.oral-video-kicker) { color:#c4c9d1; font-size:.78rem; line-height:1.85; text-align:justify; margin:0 0 13px; }
.oral-video-link { display:inline-flex; align-items:center; gap:7px; color:#d8bd79; text-decoration:none; font-family:'Noto Sans TC',sans-serif; font-size:.7rem; letter-spacing:.08em; }
.oral-video-link i { font-size:.62rem; transition:transform .25s ease; }
.oral-video-link:hover { color:#f3c258; }
.oral-video-link:hover i { transform:translateX(4px); }
@media (max-width: 992px) { .oral-video-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 576px) { .oral-history-heading h3{font-size:1.45rem;} .oral-history-heading p{font-size:.76rem;} .oral-video-grid{grid-template-columns:1fr;gap:17px;} .oral-video-content{padding:16px 17px 18px;} }
