    /* ─── PAGE HERO ─────────────────────────────── */
    .page-hero {
      padding-top: 110px;
      position: relative;
      overflow: hidden;
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: center/cover no-repeat;
      opacity: .18;
    }
    .page-hero-inner {
      position: relative;
      z-index: 1;
      padding: 3.5rem 0 2.5rem;
    }
    .page-hero-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: .75rem;
      letter-spacing: .25em;
      color: var(--accent);
      text-transform: uppercase;
    }
    .page-hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #fff;
      margin: .4rem 0 .6rem;
    }
    .page-hero-title em { font-style: normal; color: var(--accent); }
    .page-hero-sub { color: var(--text-muted); font-size: .95rem; }
    .page-hero-breadcrumb {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem;
      color: var(--text-muted);
      margin-top: 1.5rem;
    }
    .page-hero-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .page-hero-breadcrumb a:hover { color: var(--accent); }

    /* ─── 篩選 Tab ──────────────────────────────── */
    .hl-filter-bar {
      background: var(--secondary);
      border-bottom: 1px solid rgba(255,255,255,.07);
      position: sticky;
      top: 110px;
      z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .hl-filter-inner {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .hl-filter-inner::-webkit-scrollbar { display: none; }
    .hl-tab {
      flex-shrink: 0;
      padding: .9rem 1.3rem;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--text-muted);
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: color .2s, border-color .2s;
      white-space: nowrap;
    }
    .hl-tab:hover { color: #fff; }
    .hl-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
    .hl-tab-sep {
      width: 1px;
      height: 18px;
      background: rgba(255,255,255,.1);
      flex-shrink: 0;
      align-self: center;
      margin: 0 .2rem;
    }
    .hl-view-btns {
      margin-left: auto;
      display: flex;
      gap: .3rem;
      padding: 0 0 0 1rem;
      flex-shrink: 0;
    }
    .hl-view-btn {
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      color: var(--text-muted);
      cursor: pointer;
      font-size: .95rem;
      transition: background .2s, color .2s;
    }
    .hl-view-btn.active,
    .hl-view-btn:hover {
      background: rgba(0,194,224,.15);
      color: var(--accent);
      border-color: rgba(0,194,224,.3);
    }

    /* ─── 主內容區 ──────────────────────────────── */
    .hl-main { padding: 3rem 0 5rem; }

    /* ─── 精選影片 Hero ─────────────────────────── */
    .video-hero {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--secondary);
      overflow: hidden;
      cursor: pointer;
    }
    .video-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }
    .video-hero:hover img { transform: scale(1.03); }
    .video-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,.85) 0%, rgba(10,22,40,.2) 60%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .video-play-btn {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(0,194,224,.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--primary);
      transition: transform .2s, background .2s;
      margin-bottom: 1rem;
    }
    .video-hero:hover .video-play-btn {
      transform: scale(1.1);
      background: var(--accent);
    }
    .video-hero-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
    }
    .video-hero-tag {
      font-size: .68rem;
      letter-spacing: .14em;
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: .3rem;
    }
    .video-hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }
    .video-hero-meta {
      font-size: .78rem;
      color: var(--text-muted);
      margin-top: .3rem;
    }

    /* ─── 影片小卡 ──────────────────────────────── */
    .video-card {
      background: var(--secondary);
      border: 1px solid rgba(255,255,255,.07);
      overflow: hidden;
      transition: border-color .25s;
      cursor: pointer;
    }
    .video-card:hover { border-color: rgba(0,194,224,.35); }
    .video-card-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .video-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s;
    }
    .video-card:hover .video-card-thumb img { transform: scale(1.05); }
    .video-card-thumb-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,22,40,.35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .25s;
    }
    .video-card:hover .video-card-thumb-overlay { opacity: 1; }
    .video-card-play {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(0,194,224,.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--primary);
    }
    .video-card-duration {
      position: absolute;
      bottom: .5rem;
      right: .6rem;
      font-size: .7rem;
      background: rgba(0,0,0,.7);
      color: #fff;
      padding: .1rem .4rem;
      font-family: 'Oswald', sans-serif;
    }
    .video-card-body { padding: .9rem 1rem; }
    .video-card-tag {
      font-size: .65rem;
      letter-spacing: .1em;
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: .25rem;
    }
    .video-card-title {
      font-size: .88rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.4;
      margin-bottom: .3rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .video-card-meta { font-size: .75rem; color: var(--text-muted); }

    /* ─── 相片格 Masonry-like ───────────────────── */
    .photo-grid {
      columns: 3;
      column-gap: 1rem;
    }
    .photo-grid.grid-2col { columns: 2; }
    .photo-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .photo-item img {
      width: 100%;
      display: block;
      transition: transform .35s;
    }
    .photo-item:hover img { transform: scale(1.04); }
    .photo-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,22,40,.55);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .25s;
      gap: .4rem;
    }
    .photo-item:hover .photo-item-overlay { opacity: 1; }
    .photo-item-overlay i {
      font-size: 1.5rem;
      color: rgba(255,255,255,.9);
    }
    .photo-item-overlay span {
      font-size: .75rem;
      color: rgba(255,255,255,.75);
      letter-spacing: .06em;
    }
    .photo-item-tag {
      position: absolute;
      bottom: .6rem;
      left: .6rem;
      font-size: .65rem;
      padding: .15rem .5rem;
      background: rgba(10,22,40,.75);
      color: var(--accent);
      font-weight: 700;
      letter-spacing: .08em;
    }

    /* ─── Lightbox ──────────────────────────────── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5,12,25,.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lightbox.show { display: flex; }
    .lightbox-inner {
      position: relative;
      max-width: 900px;
      width: 92%;
    }
    .lightbox-inner img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      display: block;
    }
    .lightbox-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: rgba(255,255,255,.7);
      font-size: 1.6rem;
      cursor: pointer;
      transition: color .2s;
    }
    .lightbox-close:hover { color: var(--accent); }
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      color: #fff;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background .2s;
    }
    .lightbox-prev:hover,
    .lightbox-next:hover { background: rgba(0,194,224,.3); }
    .lightbox-prev { left: -3.5rem; }
    .lightbox-next { right: -3.5rem; }
    .lightbox-caption {
      text-align: center;
      color: var(--text-muted);
      font-size: .8rem;
      margin-top: .75rem;
    }

    /* ─── Video Modal ───────────────────────────── */
    .video-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5,12,25,.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .video-modal.show { display: flex; }
    .video-modal-inner {
      position: relative;
      max-width: 860px;
      width: 92%;
    }
    .video-modal-inner .ratio { background: #000; }
    .video-modal-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: rgba(255,255,255,.7);
      font-size: 1.6rem;
      cursor: pointer;
      transition: color .2s;
    }
    .video-modal-close:hover { color: var(--accent); }

    /* 載入更多 */
    .load-more-wrap { text-align: center; margin-top: 2.5rem; }

    /* 分區標題 */
    .sub-section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }
    .sub-section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .04em;
    }
    .sub-section-title span { color: var(--accent); }
    .sub-section-link {
      font-size: .78rem;
      color: var(--accent);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: .25rem;
    }

    /* ─── RWD ──────────────────────────────────────────────── */

    /* 手機版 navbar 高度 80px */
    @media (max-width: 991px) {
      .page-hero { padding-top: 80px; }
      .page-hero-inner { padding: 2rem 1.25rem 1.5rem; }
      .page-hero-title { font-size: 2rem; }
      .page-hero-sub { font-size: .88rem; }

      .hl-filter-bar { top: 80px; }
      .hl-tab { padding: .75rem .9rem; font-size: .8rem; }

      .hl-main { padding: 1.25rem 0 3rem; }
    }

    @media (max-width: 768px) {
      /* 影片小卡：2欄 */
      #videoCardsRow > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
      }

      /* Video hero */
      .video-hero-info { padding: 1rem; }
      .video-hero-title { font-size: 1.1rem; }
      .video-play-btn { width: 54px; height: 54px; font-size: 1.2rem; }

      /* 相片格 */
      .photo-grid { columns: 2; }

      /* Lightbox 箭頭移到圖片內側，避免跑出螢幕 */
      .lightbox-prev { left: .5rem; }
      .lightbox-next { right: .5rem; }
      .lightbox-prev,
      .lightbox-next {
        background: rgba(0,0,0,.55);
        border-color: rgba(255,255,255,.1);
      }
    }

    @media (max-width: 480px) {
      /* 相片格：單欄 */
      .photo-grid { columns: 1; }

      /* 影片小卡：極窄時改全寬 */
      #videoCardsRow > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    /* List view: full-width video cards; photos use .grid-2col */
    .hl-main.view-list #videoCardsRow > [class*="col-"] {
      flex: 0 0 100%;
      max-width: 100%;
    }

    /* ── 分頁控制列 ──────────────────────────────── */
    .news-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: .4rem;
      margin-top: 3rem;
    }
    .pg-btn {
      min-width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary);
      border: 1px solid rgba(255,255,255,.1);
      color: var(--text-muted);
      font-size: .85rem;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
    }
    .pg-btn:hover { color: var(--accent); border-color: rgba(0,194,224,.4); }
    .pg-btn.active {
      background: var(--accent);
      color: var(--primary);
      border-color: var(--accent);
      font-weight: 700;
    }
