﻿/* Source: index.html */
:root {
      --teal: #118ba4;
      --teal-dark: #075f71;
      --mint: #d9f5f1;
      --sky: #eaf8fb;
      --ink: #164b58;
      --muted: #5f7a80;
      --line: #dcecef;
      --cream: #fff9ef;
      --gold: #f2bd69;
      --white: #fff;
      --shadow: 0 16px 36px rgba(20, 107, 122, .12);
      --radius: 8px;
    }

    * { box-sizing: border-box; }

    @keyframes lift-up {
      from {
        transform: translateY(18px);
      }
      to {
        transform: translateY(0);
      }
    }

    @keyframes float-soft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    html,
    body {
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
      color: var(--ink);
      background: #fff;
      line-height: 1.75;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .primary-btn,
    .ghost-btn,
    .video-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      border-radius: 999px;
      padding: 0 26px;
      font-weight: 400;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn-icon,
    .link-icon {
      width: 19px;
      height: 19px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .primary-btn,
    .video-btn {
      color: #fff;
      background: var(--teal);
      box-shadow: 0 12px 22px rgba(17, 139, 164, .2);
    }

    .ghost-btn {
      color: var(--teal);
      background: rgba(255, 255, 255, .74);
      border: 1px solid rgba(17, 139, 164, .28);
    }

    .primary-btn:hover,
    .ghost-btn:hover,
    .video-btn:hover {
      transform: translateY(-2px);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity .72s ease,
        transform .72s cubic-bezier(.2, .72, .2, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 0 auto;
      border-radius: 0;
      min-height: 600px;
      font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
      background:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .7) 0 42px, transparent 43px),
        radial-gradient(circle at 88% 26%, rgba(255, 255, 255, .58) 0 58px, transparent 59px),
        radial-gradient(34px 18px at 79% 18%, rgba(105, 187, 151, .24) 0 48%, transparent 50%),
        radial-gradient(30px 15px at 18% 76%, rgba(105, 187, 151, .18) 0 48%, transparent 50%),
        linear-gradient(#ecf5f2 1px, transparent 1px),
        linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
        #f2f8f6;
      background-size: auto, auto, auto, auto, 34px 34px, 34px 34px, auto;
    }

    .hero .container {
      width: min(1240px, calc(100% - 40px));
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 34px;
      align-items: center;
      padding: 50px 0 48px;
      min-height: 600px;
      animation: lift-up .7s ease both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 6px 17px;
      border-radius: 999px;
      color: var(--teal);
      background: #dff7f8;
      font-size: 16px;
      font-weight: 400;
    }

    .hand-note {
      display: inline-flex;
      margin-left: 12px;
      color: #e59033;
      font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
      font-size: clamp(18px, 1.5vw, 24px);
      line-height: 1;
      font-weight: 400;
      opacity: .9;
    }

    .hero h1,
    .section-title {
      margin: 18px 0 14px;
      color: #0a667f;
      font-size: clamp(34px, 4vw, 64px);
      line-height: 1.24;
      letter-spacing: 0;
      font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    }

    .hero h1 .accent {
      color: #e59033;
    }

    .hero p {
      width: min(460px, 100%);
      margin: 0 0 24px;
      color: #0a667f;
      font-size: 18px;
      font-weight: 700;
      overflow-wrap: anywhere;
      word-break: break-all;
    }

    .hero-actions,
    .hero-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px 22px;
    }

    .hero-links {
      margin-top: 18px;
      color: #47737b;
      font-weight: 400;
    }

    .hero-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-photo {
      position: relative;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      animation: float-soft 5.2s ease-in-out infinite;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 10% 3% 7% 12%;
      border-radius: 42% 58% 48% 52%;
      background: rgba(217, 245, 241, .76);
      box-shadow: 0 24px 70px rgba(17, 139, 164, .15);
    }

    .hero-banner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 700px;
      height: auto;
      object-fit: contain;
      margin-left: auto;
      transform: translateX(16px);
    }

    .quick {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: -16px auto 0;
      border-radius: 0;
      padding: 64px 0 74px;
      background: #fff;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 6px 14px;
      border-radius: 999px;
      background: #e4aa54;
      color: #fff;
      font-size: 15px;
      font-weight: 800;
    }

    .section-kicker.is-light {
      font-weight: 400;
    }

    .section-title.with-icon {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .title-icon {
      width: 28px;
      height: 28px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .section-title {
      margin-top: 0;
      font-size: clamp(28px, 3vw, 42px);
    }

    .section-copy {
      margin: -8px 0 30px;
      color: var(--muted);
      font-weight: 700;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .category-card {
      min-height: 150px;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: linear-gradient(110deg, #fff, #f6fdfe 58%, #fff8ea);
      box-shadow: 0 14px 30px rgba(21, 97, 111, .08);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(21, 97, 111, .12);
    }

    .category-icon {
      flex: 0 0 94px;
      width: 94px;
      height: 94px;
      object-fit: contain;
    }

    .category-text {
      flex: 1;
      min-width: 0;
    }

    .category-card h3 {
      margin: 0;
      font-size: 23px;
      color: #185663;
      line-height: 1.28;
    }

    .category-card p {
      margin: 4px 0 0;
      color: #386f7a;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.45;
    }

    .category-arrow {
      flex: 0 0 38px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 2px solid #b9e2e4;
      border-radius: 50%;
      color: var(--teal);
      font-size: 22px;
      font-weight: 900;
      background: rgba(255, 255, 255, .72);
      line-height: 1;
      transform: translateY(-4px);
    }

    .about {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 18px auto 0;
      border-radius: 0;
      padding: 104px 0 112px;
      background:
        radial-gradient(circle at 14% 26%, rgba(255, 255, 255, .6) 0 42px, transparent 43px),
        radial-gradient(34px 18px at 82% 17%, rgba(105, 187, 151, .2) 0 48%, transparent 50%),
        url("../images/img6.webp") right center / auto 78% no-repeat,
        linear-gradient(#ecf5f2 1px, transparent 1px),
        linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
        #f2f8f6;
      background-size: auto, auto, auto 78%, 34px 34px, 34px 34px, auto;
    }

    .about .container {
      width: min(1240px, calc(100% - 40px));
    }

    .about-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
      gap: 70px;
      align-items: center;
    }

    .about-photo {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

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

    .about-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
      color: var(--teal);
      font-weight: 400;
    }

    .about-label .label-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 4px 16px;
      border-radius: 999px;
      background: #dff7f8;
      border: 1px solid rgba(17, 139, 164, .28);
    }

    .about-copy .section-title {
      margin-bottom: 16px;
      font-size: clamp(32px, 3.2vw, 46px);
    }

    .about-copy p {
      margin: 0;
      color: #315f68;
      font-size: 19px;
      font-weight: 700;
      line-height: 2.05;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 42px;
      text-align: center;
    }

    .stat {
      padding: 10px;
      color: #52777f;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: left;
    }

    .stat img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      margin: 0;
      flex: 0 0 auto;
    }

    .stat strong {
      display: block;
      color: var(--teal-dark);
      font-size: 28px;
      line-height: 1.2;
    }

    .articles {
      position: relative;
      padding: 84px 0 88px;
      background: #fff;
    }

    .section-row {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 34px;
    }

    .more-link {
      color: #e0a54f;
      font-weight: 900;
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      align-items: stretch;
    }

    .article-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 28px rgba(17, 86, 100, .08);
      display: flex;
      flex-direction: column;
      min-height: 470px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(17, 139, 164, .22);
      box-shadow: 0 22px 42px rgba(17, 86, 100, .14);
    }

    .article-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .article-body {
      padding: 22px 24px 24px;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .article-body h3 {
      min-height: 62px;
      margin: 0 0 12px;
      color: #2a5b65;
      font-size: 18px;
      line-height: 1.68;
    }

    .article-body p {
      margin: 0 0 24px;
      color: #6b858b;
      font-size: 16px;
    }

    .read-more {
      color: #e4aa54;
      font-weight: 900;
      align-self: flex-end;
      margin-top: auto;
    }

    .media {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 18px auto 0;
      border-radius: 0;
      padding: 82px 0 72px;
      background: #eaf8fb;
    }

    .media-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 76px;
      align-items: center;
    }

    .video-card {
      overflow: hidden;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
      aspect-ratio: 16 / 9;
      display: flex;
      flex-direction: column;
    }

    .video-cover {
      position: relative;
      flex: none;
      aspect-ratio: 559 / 254;
      min-height: 0;
      background: #d7f5f3 url("../images/img5.webp") center / cover no-repeat;
      display: grid;
      place-items: center;
    }

    .play {
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(15, 113, 128, .55);
      font-size: 22px;
    }

    .video-cover .play {
      display: none;
    }

    .video-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 17px 22px;
      color: #547a82;
      font-size: 15px;
      font-weight: 800;
    }

    .video-progress {
      width: 84px;
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--teal) 0 55%, #e2edf0 55%);
    }

    .events {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 0 auto 30px;
      border-radius: 0;
      padding: 54px 0 76px;
      background:
        radial-gradient(circle at 18% 25%, rgba(255, 236, 178, .34), transparent 22%),
        radial-gradient(circle at 82% 74%, rgba(255, 245, 210, .5), transparent 26%),
        #fff;
    }

    .event-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 28px;
    }

    .event-title-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .event-title-wrap .title-icon {
      width: 30px;
      height: 30px;
    }

    .event-title-wrap .section-title {
      margin: 0;
    }

    .event-mark {
      width: 28px;
      height: 28px;
      position: relative;
      display: inline-block;
      border: 3px solid var(--teal);
      border-radius: 5px 11px 11px 5px;
    }

    .event-mark::before {
      content: "";
      position: absolute;
      left: -9px;
      top: 7px;
      width: 8px;
      height: 10px;
      background: var(--teal);
      border-radius: 3px 0 0 3px;
    }

    .event-mark::after {
      content: "";
      position: absolute;
      left: 5px;
      bottom: -9px;
      width: 6px;
      height: 10px;
      border-radius: 0 0 5px 5px;
      background: var(--teal);
      transform: rotate(-14deg);
    }

    .event-more {
      color: var(--teal);
      font-weight: 900;
    }

    .event-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .event-card {
      display: grid;
      grid-template-columns: 145px 1fr;
      gap: 16px;
      align-items: center;
      min-height: 150px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 12px 26px rgba(17, 86, 100, .07);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(17, 86, 100, .12);
    }

    .event-card img {
      width: 145px;
      height: 118px;
      object-fit: cover;
      border-radius: 6px;
    }

    .event-card h3 {
      margin: 0 0 6px;
      color: #245b66;
      font-size: 17px;
      line-height: 1.5;
    }

    .event-card p {
      margin: 4px 0;
      color: #59777f;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.45;
    }

    .event-tag {
      display: inline-flex;
      margin-bottom: 4px;
      padding: 2px 9px;
      border-radius: 999px;
      color: var(--teal);
      background: #dff7f6;
      font-size: 14px;
      font-weight: 400;
    }

    .event-tag.is-live {
      color: #0a667f;
      background: #dff7f6;
    }

    .event-tag.is-offline {
      color: #40854a;
      background: #e8f7df;
    }

    .price {
      display: inline-flex;
      align-items: center;
      padding: 2px 0;
      color: #e59033;
      font-size: 16px;
      font-weight: 900;
    }

    .price.is-now {
      color: #d98225;
    }

    @media (max-width: 980px) {
      .hero { min-height: auto; }
      .hero-grid,
      .about-grid,
      .media-grid {
        grid-template-columns: 1fr;
      }
      .hero-grid {
        gap: 28px;
        min-height: auto;
        padding: 54px 0 58px;
      }
      .hero-photo {
        justify-content: center;
        animation: none;
      }
      .hero-photo::before {
        inset: 8% 8% 6%;
      }
      .hero-banner {
        width: min(100%, 620px);
        margin: 0 auto;
        transform: none;
      }
      .about-grid {
        gap: 36px;
      }
      .about-photo {
        justify-content: center;
      }
      .about-photo img {
        width: min(100%, 620px);
        margin: 0 auto;
      }
      .category-grid,
      .article-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 680px) {
      .hero,
      .quick,
      .about,
      .media,
      .events {
        width: 100%;
        border-radius: 0;
      }
      .hero,
      .quick {
        margin: 0 auto;
      }
      .quick {
        margin: -16px auto 0;
      }
      .about,
      .media {
        margin: 10px auto 0;
      }
      .events {
        margin: 0 auto 30px;
      }
      .hero,
      .quick {
        border-radius: 0;
      }
      .hero .container { width: min(100% - 28px, 1110px); }
      .about .container { width: min(100% - 28px, 1110px); }
      .hero-grid {
        gap: 22px;
        padding: 40px 0 44px;
      }
      .hero h1 { font-size: 38px; }
      .hero p { font-size: 16px; }
      .hero-actions a { width: 100%; }
      .category-grid,
      .article-grid,
      .event-grid,
      .stats {
        grid-template-columns: 1fr;
      }
      .quick,
      .articles,
      .media,
      .about {
        padding: 64px 0;
      }
      .events {
        padding: 48px 0;
      }
      .about {
        background:
          url("../images/img6.webp") right bottom / 180px auto no-repeat,
          linear-gradient(#ecf5f2 1px, transparent 1px),
          linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
          #f2f8f6;
        background-size: 180px auto, 34px 34px, 34px 34px, auto;
      }
      .about-grid {
        gap: 28px;
      }
      .about-photo img {
        width: min(100%, 560px);
      }
      .category-card {
        min-height: 126px;
        padding: 16px;
      }
      .category-icon {
        flex-basis: 76px;
        width: 76px;
        height: 76px;
      }
      .category-card h3 {
        font-size: 21px;
      }
      .category-card p {
        font-size: 15px;
      }
      .hero-photo::before {
        inset: 10% 3% 5%;
      }
      .hero-banner {
        width: min(100%, 520px);
        margin: 0 auto;
      }
      .category-arrow {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
      }
      .stat {
        justify-content: flex-start;
      }
      .section-row,
      .event-header {
        align-items: flex-start;
        flex-direction: column;
      }
      .event-card {
        grid-template-columns: 1fr;
      }
      .event-card img {
        width: 100%;
        height: 190px;
      }
      .video-card { aspect-ratio: 16 / 9; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

/* Source: blog.html */
:root {
    --primary: #0c7d9b;
    --primary-mid: #15b5cd;
    --primary-light: #79d0eb;
    --primary-pale: #adebf8;
    --primary-bg: #eef9fd;
    --cream-bg: #fbfaff;
    --warm-1: #f0e6c3;
    --warm-2: #fdb958;
    --warm-3: #f4e0e2;
    --warm-coral: #f16690;
    --text-dark: #1e3a45;
    --text-mid: #4a7080;
    --text-light: #8ab0bc;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(12,125,155,0.10);
    --shadow-card: 0 2px 16px rgba(12,125,155,0.08);
  }

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

  body {
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  /* ===== PAGE HEADER ===== */
  .page-header {
    background: url("../images/blog.webp") center / cover no-repeat;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: none;
    position: absolute;
    right: -60px; top: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(121,208,235,0.25) 0%, transparent 70%);
    border-radius: 50%;
  }
  .page-header::after {
    content: none;
    position: absolute;
    left: 30%; bottom: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(253,185,88,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }
  .breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
    position: relative; z-index: 1;
  }
  .breadcrumb a { color: var(--primary-mid); text-decoration: none; }
  .breadcrumb span { opacity: .5; }
  .page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  .page-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .05em;
  }
  .page-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .page-label-row .page-label { margin-bottom: 0; }
  .hand-note {
    display: inline-flex;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }
  .page-title {
    font-size: 36px; font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .page-title em { font-style: normal; color: var(--warm-2); }
  .page-desc { font-size: 16px; color: var(--text-mid); max-width: 500px; }

  /* ===== LAYOUT ===== */
  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  /* ===== FILTER TABS ===== */
  .filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .filter-tab {
    background: #fff;
    border: 1.5px solid rgba(21,181,205,0.25);
    border-radius: 24px;
    padding: 7px 18px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
  }
  .filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
  .filter-count { font-size: 11px; opacity: .7; margin-left: 2px; }

  /* ===== FEATURED ARTICLE ===== */
  .featured-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
    border-left: 4px solid var(--warm-2);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
  }
  .featured-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(12,125,155,0.15); }
  .featured-img {
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 351 / 220;
    min-height: 0;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .featured-img-placeholder {
    font-size: 64px;
    opacity: .45;
    filter: drop-shadow(0 4px 12px rgba(12,125,155,0.25));
  }
  .featured-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--warm-2);
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 12px;
    letter-spacing: .05em;
  }
  .featured-body {
    padding: 28px 28px 24px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .article-cat {
    display: inline-block;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px; font-weight: 700;
    padding: 3px 10px; border-radius: 10px;
    margin-bottom: 10px;
    letter-spacing: .05em;
  }
  .featured-title {
    font-size: 20px; font-weight: 900;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .featured-excerpt { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
  .article-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px; color: var(--text-light);
  }
  .article-meta-item { display: flex; align-items: center; gap: 4px; }
  .read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--warm-2); font-size: 15px; font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    transition: gap .2s;
    cursor: pointer;
    background: none; border: none; font-family: inherit;
  }
  .read-more:hover { gap: 10px; }

  /* ===== ARTICLE GRID ===== */
  .article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .article-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
  }
  .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .card-img {
    aspect-ratio: 351 / 220;
    background: linear-gradient(135deg, var(--primary-pale) 0%, #d4f0f8 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .card-img-placeholder { font-size: 48px; opacity: .4; }
  .card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(12,125,155,0.08) 100%);
  }
  .card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
  .card-title {
    font-size: 16px; font-weight: 700;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-excerpt {
    font-size: 14px; color: var(--text-mid); line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(21,181,205,0.12);
    padding-top: 10px;
    font-size: 12px; color: var(--text-light);
  }
  .card-footer-link {
    color: var(--warm-2);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: inherit;
  }

  /* ===== PAGINATION ===== */
  .pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 36px;
  }
  .page-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(21,181,205,0.25);
    background: #fff;
    font-size: 15px; font-weight: 700; font-family: 'Noto Sans TC', sans-serif;
    color: var(--text-mid);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .page-btn:hover, .page-btn.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
  }

  /* ===== SIDEBAR ===== */
  .sidebar { display: flex; flex-direction: column; gap: 24px; }
  .sidebar-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .sidebar-card-header {
    background: #118ba4;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
  }
  .sidebar-card-body { padding: 16px 18px; }

  /* Search */
  .search-box {
    display: flex; align-items: center;
    background: var(--primary-bg);
    border-radius: 10px;
    overflow: hidden;
  }
  .search-box input {
    flex: 1; border: none; background: transparent;
    padding: 10px 14px; font-size: 15px; font-family: 'Noto Sans TC', sans-serif;
    outline: none; color: var(--text-dark);
  }
  .search-box button {
    background: #118ba4; border: none;
    padding: 10px 14px; cursor: pointer; color: #fff; font-size: 16px;
  }

  /* Categories */
  .cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .cat-list li a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 12px; border-radius: 8px;
    text-decoration: none; color: var(--text-mid); font-size: 15px; font-weight: 500;
    transition: background .2s, color .2s;
  }
  .cat-list li a:hover { background: var(--primary-bg); color: var(--primary); }
  .cat-list li a.active { background: #118ba4; color: #fff; font-weight: 700; }
  .cat-badge {
    background: #118ba4;
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 10px;
  }
  .cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-light); margin-right: 8px; display: inline-block; }

  /* Popular */
  .popular-list { display: flex; flex-direction: column; gap: 14px; }
  .popular-item {
    display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
    transition: opacity .2s;
  }
  .popular-item:hover { opacity: .75; }
  .popular-thumb {
    width: 72px; aspect-ratio: 351 / 220; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; opacity: .7;
  }
  .popular-info .popular-title { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; }
  .popular-info .popular-date { font-size: 11px; color: var(--text-light); }

  /* Tags */
  .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px; font-weight: 500;
    padding: 5px 12px; border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }
  .tag:hover { background: var(--primary); color: #fff; }

  /* CTA sidebar */
  .sidebar-cta {
    background: #118ba4;
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
  }
  .sidebar-cta-icon { font-size: 36px; margin-bottom: 10px; }
  .sidebar-cta-title { font-size: 16px; font-weight: 900; margin-bottom: 6px; }
  .sidebar-cta-desc { font-size: 12px; opacity: .85; line-height: 1.5; margin-bottom: 14px; }
  .sidebar-cta-btn {
    background: var(--warm-2); color: #fff; border: none;
    border-radius: 20px; padding: 9px 22px;
    font-size: 15px; font-weight: 700; font-family: 'Noto Sans TC', sans-serif;
    cursor: pointer; transition: opacity .2s;
    width: 100%;
  }
  .sidebar-cta-btn:hover { opacity: .88; }

  /* ===== ARTICLE DETAIL PAGE ===== */
  #article-page { display: none; }
  #list-page { display: block; }

  .article-detail-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  /* Article hero */
  .article-hero {
    background: linear-gradient(135deg, var(--primary-pale) 0%, #cceef8 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--radius);
    aspect-ratio: 351 / 220;
    display: flex; align-items: center; justify-content: center;
    font-size: 96px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .article-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
  }
  .article-hero-emoji { position: relative; z-index: 1; filter: drop-shadow(0 8px 20px rgba(12,125,155,0.2)); }

  /* Article meta bar */
  .article-meta-bar {
    display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
    margin-bottom: 16px;
  }
  .article-date { font-size: 14px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
  .article-views { font-size: 14px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
  .article-share {
    margin-left: auto;
    display: flex; align-items: center; gap: 8px;
  }
  .share-btn {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--primary-bg); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: background .2s;
    color: var(--primary);
  }
  .share-btn:hover { background: var(--primary-pale); }

  /* Article heading */
  .article-heading {
    font-size: 28px; font-weight: 900;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .article-subheading { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 2px solid var(--primary-bg); }

  /* Author bar */
  .author-bar {
    display: flex; align-items: center; gap: 12px;
    background: var(--primary-bg);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 28px;
  }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .author-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
  .author-role { font-size: 12px; color: var(--text-light); }
  .author-badge {
    margin-left: auto;
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 10px;
  }

  /* Article body */
  .article-body { line-height: 1.85; color: var(--text-dark); }
  .article-body h2 {
    font-size: 20px; font-weight: 900;
    color: var(--primary);
    margin: 32px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--warm-2);
  }
  .article-body h3 {
    font-size: 16px; font-weight: 700;
    color: var(--text-dark);
    margin: 22px 0 10px;
  }
  .article-body p { margin-bottom: 16px; font-size: 16px; }
  .article-body ul { margin: 0 0 16px 20px; }
  .article-body li { margin-bottom: 8px; font-size: 16px; }
  .article-body .highlight-box {
    background: var(--primary-bg);
    border-left: 4px solid var(--primary-mid);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 15px; color: var(--primary);
    line-height: 1.7;
  }
  .article-body .warn-box {
    background: #fff8ed;
    border-left: 4px solid var(--warm-2);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 15px; color: #7a5a10;
    line-height: 1.7;
  }
  .article-body .info-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin: 20px 0;
  }
  .info-item {
    background: #fff;
    border: 1.5px solid rgba(21,181,205,0.2);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
  }
  .info-item-num { font-size: 26px; font-weight: 900; color: var(--primary); }
  .info-item-label { font-size: 12px; color: var(--text-mid); margin-top: 4px; }

  /* Tags in article */
  .article-tags { margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .article-tags-label { font-size: 14px; color: var(--text-light); margin-right: 4px; }

  /* Related */
  .related-section { margin-top: 44px; padding-top: 36px; border-top: 2px solid var(--primary-bg); }
  .section-label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
  .section-icon { font-size: 18px; }
  .section-label-en { font-size: 11px; font-weight: 700; color: var(--primary-light); letter-spacing: .1em; text-transform: uppercase; }
  .section-label-zh { font-size: 20px; font-weight: 900; color: var(--text-dark); }
  .related-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .related-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform .2s;
  }
  .related-card:hover { transform: translateY(-2px); }
  .related-thumb {
    aspect-ratio: 351 / 220;
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; opacity: .6;
  }
  .related-body { padding: 12px 14px; }
  .related-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--text-dark); margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .related-date { font-size: 11px; color: var(--text-light); }

  /* Back button */
  .back-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1.5px solid rgba(21,181,205,0.3);
    border-radius: 10px; padding: 8px 16px;
    font-size: 15px; font-weight: 700; font-family: 'Noto Sans TC', sans-serif;
    color: var(--primary); cursor: pointer;
    margin-bottom: 20px;
    transition: all .2s;
  }
  .back-btn:hover { background: var(--primary-bg); }

  /* Animate */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  .fade-up { animation: fadeUp .45s ease both; }
  .delay-1 { animation-delay: .08s; }
  .delay-2 { animation-delay: .16s; }
  .delay-3 { animation-delay: .24s; }

  @media (max-width: 900px) {
    .page-header {
      padding: 40px 24px 34px;
    }

    .layout,
    .article-detail-layout {
      grid-template-columns: 1fr;
      padding: 32px 24px 64px;
      gap: 30px;
    }

    .featured-card {
      grid-template-columns: 1fr;
    }

    .article-grid {
      grid-template-columns: 1fr;
    }

    .sidebar {
      gap: 18px;
    }

    .related-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 680px) {
    .page-header {
      padding: 30px 18px 28px;
    }

    .page-label-row {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
    }

    .page-title {
      font-size: 30px;
    }

    .page-desc {
      font-size: 15px;
    }

    .layout,
    .article-detail-layout {
      padding: 26px 14px 52px;
      gap: 24px;
    }

    .filter-row {
      gap: 8px;
      margin-bottom: 22px;
    }

    .filter-tab {
      padding: 7px 14px;
      font-size: 14px;
    }

    .featured-body {
      padding: 22px 20px 20px;
    }

    .featured-title,
    .section-label-zh {
      font-size: 18px;
    }

    .featured-excerpt,
    .card-excerpt,
    .article-body .highlight-box,
    .article-body .warn-box {
      font-size: 14px;
    }

    .article-meta,
    .article-meta-bar,
    .card-footer {
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 8px 12px;
    }

    .article-share {
      width: 100%;
      margin-left: 0;
      margin-top: 4px;
    }

    .article-heading {
      font-size: 24px;
    }

    .article-subheading,
    .article-body p,
    .article-body li {
      font-size: 15px;
    }

    .article-body h2 {
      font-size: 18px;
      margin-top: 28px;
    }

    .article-body .info-grid,
    .related-grid {
      grid-template-columns: 1fr;
    }

    .author-bar {
      align-items: flex-start;
    }

    .author-badge {
      margin-left: 0;
    }
  }

  @media (max-width: 480px) {
    .breadcrumb {
      flex-wrap: wrap;
    }

    .page-title {
      font-size: 27px;
    }

    .featured-card,
    .article-card,
    .sidebar-card,
    .sidebar-cta,
    .article-hero {
      border-radius: 8px;
    }

    .article-hero {
      font-size: 60px;
      margin-bottom: 22px;
    }

    .card-body,
    .sidebar-card-body {
      padding: 14px;
    }

    .pagination {
      gap: 6px;
      margin-top: 28px;
    }

    .page-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      font-size: 14px;
    }
  }

/* Source: Videos.html */
:root {
    --primary: #0c7d9b;
    --primary-mid: #15b5cd;
    --primary-light: #79d0eb;
    --primary-pale: #adebf8;
    --primary-bg: #eef9fd;
    --cream-bg: #fbfaff;
    --warm-1: #f0e6c3;
    --warm-2: #fdb958;
    --warm-coral: #f16690;
    --text-dark: #1e3a45;
    --text-mid: #4a7080;
    --text-light: #8ab0bc;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(12,125,155,0.10);
    --shadow-card: 0 2px 16px rgba(12,125,155,0.08);
  }

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

  body {
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  .page-header {
    background: url("../images/Videos.webp") center / cover no-repeat;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: none;
    position: absolute;
    right: -56px;
    top: -76px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121,208,235,0.28) 0%, transparent 70%);
  }

  .page-header::after {
    content: none;
    position: absolute;
    left: 30%;
    bottom: -44px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253,185,88,0.18) 0%, transparent 70%);
  }

  .page-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .breadcrumb a {
    color: var(--primary-mid);
    text-decoration: none;
  }

  .breadcrumb span {
    opacity: .65;
  }

  .page-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .05em;
  }

  .page-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .page-label-row .page-label {
    margin-bottom: 0;
  }

  .hand-note {
    display: inline-flex;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .page-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .page-title em {
    font-style: normal;
    color: var(--warm-2);
  }

  .page-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 540px;
  }

  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  .filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .filter-tab {
    background: #fff;
    border: 1.5px solid rgba(21,181,205,0.25);
    border-radius: 24px;
    padding: 7px 18px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Noto Sans TC", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
  }

  .filter-tab:hover,
  .filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .filter-count {
    font-size: 11px;
    opacity: .7;
    margin-left: 2px;
  }

  .featured-video {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    margin-bottom: 28px;
    border-left: 4px solid var(--warm-2);
    transition: transform .25s, box-shadow .25s;
  }

  .featured-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(12,125,155,0.15);
  }

  .video-stage {
    aspect-ratio: 559 / 254;
    min-height: 0;
    background:
      linear-gradient(135deg, rgba(12,125,155,.18), rgba(121,208,235,.42)),
      url("../images/video1.webp") center / cover;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eef9fd;
    position: relative;
    overflow: hidden;
  }

  .video-stage::after,
  .video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 48%, rgba(12,125,155,0.22) 100%);
  }

  .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.94);
    color: var(--primary);
    box-shadow: 0 12px 28px rgba(12,125,155,.18);
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
  }

  .play-button span {
    margin-left: 4px;
  }

  .featured-badge,
  .duration {
    position: absolute;
    z-index: 1;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
  }

  .featured-badge {
    top: 14px;
    left: 14px;
    color: #fff;
    background: var(--warm-2);
    padding: 3px 10px;
    letter-spacing: .05em;
  }

  .duration {
    right: 12px;
    bottom: 12px;
    color: #fff;
    background: rgba(30,58,69,.78);
    padding: 3px 8px;
  }

  .featured-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .video-cat {
    display: inline-block;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    letter-spacing: .05em;
  }

  .featured-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .featured-excerpt {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .video-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-light);
    flex-wrap: wrap;
  }

  .watch-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--warm-2);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: gap .2s;
  }

  .watch-more:hover {
    gap: 10px;
  }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .video-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
  }

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

  .video-thumb {
    aspect-ratio: 559 / 254;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-pale), #d4f0f8);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eef9fd;
  }

  .video-thumb.is-training { background: linear-gradient(135deg, #d4f0f8, #b8e6f5); }
  .video-thumb.is-care { background: linear-gradient(135deg, #f0e6c3, #fdeac8); }
  .video-thumb.is-doctor { background: linear-gradient(135deg, #e4f4e0, #c8ebb8); }
  .video-thumb.is-treatment { background: linear-gradient(135deg, #f4e0e2, #fcd0d4); }
  .video-thumb.is-qa { background: linear-gradient(135deg, #ddeffa, #c4e4f7); }
  .video-thumb.is-life { background: linear-gradient(135deg, #e8e4f5, #d5cff0); }

  .video-stage[style*="background-image"],
  .video-thumb[style*="background-image"] {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eef9fd;
  }

  .thumb-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 50px;
    opacity: .46;
  }

  .mini-play {
    position: absolute;
    z-index: 1;
    left: 14px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(12,125,155,.14);
  }

  .video-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .video-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .video-excerpt {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
  }

  .video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(21,181,205,0.12);
    padding-top: 10px;
    font-size: 12px;
    color: var(--text-light);
  }

  .video-footer-link {
    color: var(--warm-2);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }

  .page-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(21,181,205,0.25);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
  }

  .page-btn:hover,
  .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sidebar-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

  .sidebar-card-header {
    background: #118ba4;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-card-body {
    padding: 16px 18px;
  }

  .search-box {
    display: flex;
    align-items: center;
    background: var(--primary-bg);
    border-radius: 10px;
    overflow: hidden;
  }

  .search-box input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 10px 14px;
    font-size: 15px;
    font-family: "Noto Sans TC", sans-serif;
    outline: none;
    color: var(--text-dark);
    min-width: 0;
  }

  .search-box button {
    background: #118ba4;
    border: 0;
    padding: 10px 14px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
  }

  .cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
    transition: background .2s, color .2s;
  }

  .cat-list li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 700;
  }

  .cat-list li a.active {
    background: #118ba4;
    color: #fff;
    font-weight: 700;
  }

  .cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    margin-right: 8px;
    display: inline-block;
  }

  .cat-badge {
    background: #118ba4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
  }

  .popular-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .popular-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    transition: opacity .2s;
  }

  .popular-item:hover {
    opacity: .75;
  }

  .popular-thumb {
    width: 60px;
    aspect-ratio: 351 / 220;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eef9fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: .78;
  }

  .popular-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .popular-date {
    font-size: 11px;
    color: var(--text-light);
  }

  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }

  .tag:hover {
    background: var(--primary);
    color: #fff;
  }

  .sidebar-cta {
    background: #118ba4;
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
  }

  .sidebar-cta-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .sidebar-cta-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
  }

  .sidebar-cta-desc {
    font-size: 12px;
    opacity: .85;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .sidebar-cta-btn {
    background: var(--warm-2);
    color: #fff;
    border: 0;
    border-radius: 20px;
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    cursor: pointer;
    transition: opacity .2s;
    width: 100%;
  }

  .sidebar-cta-btn:hover {
    opacity: .88;
  }

  .fade-up { animation: fadeUp .45s ease both; }
  .delay-1 { animation-delay: .08s; }
  .delay-2 { animation-delay: .16s; }
  .delay-3 { animation-delay: .24s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  @media (max-width: 980px) {
    .layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .featured-video {
      grid-template-columns: 1fr;
    }

    .sidebar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 680px) {
    .page-header {
      padding: 42px 28px 36px;
    }

    .page-title {
      font-size: 31px;
    }

    .layout {
      padding: 34px 20px 64px;
    }

    .filter-row {
      gap: 8px;
    }

    .filter-tab {
      padding: 7px 14px;
      font-size: 14px;
    }

    .video-grid,
    .sidebar {
      grid-template-columns: 1fr;
    }

    .featured-body {
      padding: 22px 20px 20px;
    }
  }

/* Source: Experts.html */
:root {
    --primary: #0c7d9b;
    --primary-mid: #15b5cd;
    --primary-light: #79d0eb;
    --primary-pale: #adebf8;
    --primary-bg: #eef9fd;
    --cream-bg: #fbfaff;
    --warm-2: #fdb958;
    --leaf: #76aa2a;
    --text-dark: #1e3a45;
    --text-mid: #4a7080;
    --text-light: #8ab0bc;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(12,125,155,0.10);
    --shadow-card: 0 2px 16px rgba(12,125,155,0.08);
  }

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

  body {
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  .page-header {
    background: url("../images/Experts.webp") center / cover no-repeat;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: none;
    position: absolute;
    right: -60px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121,208,235,0.25) 0%, transparent 70%);
  }

  .page-header::after {
    content: none;
    position: absolute;
    left: 30%;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253,185,88,0.18) 0%, transparent 70%);
  }

  .page-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
  }

  .breadcrumb a {
    color: var(--primary-mid);
    text-decoration: none;
  }

  .breadcrumb span {
    opacity: .5;
  }

  .page-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .05em;
  }

  .page-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .page-label-row .page-label {
    margin-bottom: 0;
  }

  .hand-note {
    display: inline-flex;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .page-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .page-title em {
    font-style: normal;
    color: var(--warm-2);
  }

  .page-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 500px;
  }

  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  .filter-tab {
    background: #fff;
    border: 1.5px solid rgba(21,181,205,0.25);
    border-radius: 24px;
    padding: 7px 18px;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
    font-family: "Noto Sans TC", sans-serif;
    cursor: pointer;
    transition: all .2s;
  }

  .filter-tab:hover,
  .filter-tab.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
  }

  .expert-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .expert-card {
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 28px;
    align-items: center;
    min-height: 205px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 16px rgba(31,62,72,.11);
    border: 1px solid rgba(12,125,155,.06);
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .expert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(31,62,72,.13);
  }

  .doctor-photo {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: #eff5f7 center / cover no-repeat;
    border: 1px solid rgba(12,125,155,.08);
    display: grid;
    place-items: end center;
    position: relative;
  }

  .doctor-photo::before {
    content: none;
    width: 76px;
    height: 88px;
    border-radius: 34px 34px 12px 12px;
    background: linear-gradient(180deg, #ffffff 0%, #edf6f8 100%);
    border: 1px solid rgba(12,125,155,.1);
    box-shadow: inset 0 -22px 0 rgba(12,125,155,.07);
  }

  .doctor-photo::after {
    content: none;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary));
    font-size: 20px;
    font-weight: 900;
  }

  .doctor-photo.is-warm::after { background: linear-gradient(135deg, #f7a66a, #d96f72); }
  .doctor-photo.is-green::after { background: linear-gradient(135deg, #9ecb54, #5e9b38); }
  .doctor-photo.is-violet::after { background: linear-gradient(135deg, #a88cdf, #6978c8); }

  .expert-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .expert-role {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    border-radius: 10px;
    background: rgba(21,181,205,.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
  }

  .expert-desc {
    color: #425f69;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .expert-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--leaf);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }

  .expert-link::after {
    content: "›";
    font-size: 24px;
    line-height: 1;
    transition: transform .2s;
  }

  .expert-link:hover::after {
    transform: translateX(4px);
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }

  .page-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(21,181,205,0.25);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
  }

  .page-btn:hover,
  .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sidebar-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

  .sidebar-card-header {
    background: #118ba4;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-card-body {
    padding: 16px 18px;
  }

  .search-box {
    display: flex;
    align-items: center;
    background: var(--primary-bg);
    border-radius: 10px;
    overflow: hidden;
  }

  .search-box input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 10px 14px;
    font-size: 15px;
    font-family: "Noto Sans TC", sans-serif;
    outline: none;
    color: var(--text-dark);
  }

  .search-box button {
    background: #118ba4;
    border: 0;
    padding: 10px 14px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
  }

  .cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
    transition: background .2s, color .2s;
  }

  .cat-list li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 700;
  }

  .cat-list li a.active {
    background: #118ba4;
    color: #fff;
    font-weight: 700;
  }

  .cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    margin-right: 8px;
    display: inline-block;
  }

  .cat-badge {
    background: #118ba4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
  }

  .popular-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .popular-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    transition: opacity .2s;
  }

  .popular-item:hover { opacity: .75; }

  .popular-thumb {
    width: 60px;
    aspect-ratio: 351 / 220;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: .78;
  }

  .popular-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .popular-date {
    font-size: 11px;
    color: var(--text-light);
  }

  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }

  .tag:hover {
    background: var(--primary);
    color: #fff;
  }

  .sidebar-cta {
    background: #118ba4;
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
  }

  .sidebar-cta-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .sidebar-cta-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
  }

  .sidebar-cta-desc {
    font-size: 12px;
    opacity: .85;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .sidebar-cta-btn {
    width: 100%;
    background: var(--warm-2);
    color: #fff;
    border: 0;
    border-radius: 20px;
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    cursor: pointer;
    transition: opacity .2s;
  }

  .sidebar-cta-btn:hover { opacity: .88; }

  .fade-up { animation: fadeUp .45s ease both; }
  .delay-1 { animation-delay: .08s; }
  .delay-2 { animation-delay: .16s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  @media (max-width: 980px) {
    .layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .sidebar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 680px) {
    .page-header {
      padding: 38px 28px 32px;
    }

    .page-title {
      font-size: 30px;
    }

    .layout {
      padding: 34px 20px 64px;
    }

    .expert-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 20px;
    }

    .doctor-photo {
      width: 150px;
      height: 150px;
    }

    .sidebar {
      grid-template-columns: 1fr;
    }
  }

/* Source: faq.html */
:root {
    --primary: #0c7d9b;
    --primary-mid: #15b5cd;
    --primary-light: #79d0eb;
    --primary-pale: #adebf8;
    --primary-bg: #eef9fd;
    --cream-bg: #fbfaff;
    --warm-2: #fdb958;
    --leaf: #76aa2a;
    --text-dark: #1e3a45;
    --text-mid: #4a7080;
    --text-light: #8ab0bc;
    --radius-sm: 10px;
    --shadow-card: 0 2px 16px rgba(12,125,155,0.08);
  }

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

  body {
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
  }

  .page-header {
    background: url("../images/faq.webp") center / cover no-repeat;
    padding: 52px 40px 44px;
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: none;
    position: absolute;
    right: -60px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121,208,235,0.25) 0%, transparent 70%);
  }

  .page-header::after {
    content: none;
    position: absolute;
    left: 30%;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253,185,88,0.18) 0%, transparent 70%);
  }

  .page-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .breadcrumb {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
  }

  .breadcrumb a {
    color: var(--primary-mid);
    text-decoration: none;
  }

  .breadcrumb span {
    opacity: .5;
  }

  .page-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(21,181,205,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .05em;
  }

  .page-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .page-label-row .page-label {
    margin-bottom: 0;
  }

  .hand-note {
    display: inline-flex;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .page-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .page-title em {
    font-style: normal;
    color: var(--warm-2);
  }

  .page-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 500px;
  }

  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 44px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  .filter-tab {
    background: #fff;
    border: 1.5px solid rgba(21,181,205,0.25);
    border-radius: 24px;
    padding: 7px 18px;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
    font-family: "Noto Sans TC", sans-serif;
    cursor: pointer;
    transition: all .2s;
  }

  .filter-tab:hover,
  .filter-tab.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 16px rgba(31,62,72,.11);
    border: 1px solid rgba(12,125,155,.06);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border: 0;
    background: #fff;
    color: var(--text-dark);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }

  .faq-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(118,170,42,.12);
    color: var(--leaf);
    font-size: 18px;
    font-weight: 900;
  }

  .faq-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
  }

  .faq-category {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
  }

  .faq-toggle {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--leaf);
    background: rgba(118,170,42,.1);
    font-size: 24px;
    line-height: 1;
    transition: transform .2s;
  }

  .faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
  }

  .faq-answer {
    display: none;
    padding: 0 24px 24px 80px;
    color: #425f69;
    font-size: 16px;
    line-height: 1.85;
  }

  .faq-item.is-open .faq-answer {
    display: block;
  }

  .answer-note {
    margin-top: 12px;
    padding: 13px 16px;
    border-left: 4px solid var(--warm-2);
    border-radius: 0 10px 10px 0;
    color: #7a5a10;
    background: #fff8ed;
    font-size: 15px;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }

  .page-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(21,181,205,0.25);
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
  }

  .page-btn:hover,
  .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sidebar-card {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

  .sidebar-card-header {
    background: #118ba4;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sidebar-card-body { padding: 16px 18px; }

  .search-box {
    display: flex;
    align-items: center;
    background: var(--primary-bg);
    border-radius: 10px;
    overflow: hidden;
  }

  .search-box input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 10px 14px;
    font-size: 15px;
    font-family: "Noto Sans TC", sans-serif;
    outline: none;
    color: var(--text-dark);
  }

  .search-box button {
    background: #118ba4;
    border: 0;
    padding: 10px 14px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
  }

  .cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
    transition: background .2s, color .2s;
  }

  .cat-list li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 700;
  }

  .cat-list li a.active {
    background: #118ba4;
    color: #fff;
    font-weight: 700;
  }

  .cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    margin-right: 8px;
    display: inline-block;
  }

  .cat-badge {
    background: #118ba4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
  }

  .popular-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .popular-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    transition: opacity .2s;
  }

  .popular-item:hover { opacity: .75; }

  .popular-thumb {
    width: 60px;
    aspect-ratio: 351 / 220;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: .78;
  }

  .popular-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .popular-date {
    font-size: 11px;
    color: var(--text-light);
  }

  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }

  .tag:hover {
    background: var(--primary);
    color: #fff;
  }

  .sidebar-cta {
    background: #118ba4;
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
  }

  .sidebar-cta-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .sidebar-cta-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
  }

  .sidebar-cta-desc {
    font-size: 12px;
    opacity: .85;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .sidebar-cta-btn {
    width: 100%;
    background: var(--warm-2);
    color: #fff;
    border: 0;
    border-radius: 20px;
    padding: 9px 22px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Sans TC", sans-serif;
    cursor: pointer;
    transition: opacity .2s;
  }

  .sidebar-cta-btn:hover { opacity: .88; }

  .fade-up { animation: fadeUp .45s ease both; }
  .delay-1 { animation-delay: .08s; }
  .delay-2 { animation-delay: .16s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  @media (max-width: 980px) {
    .layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .sidebar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 680px) {
    .page-header {
      padding: 38px 28px 32px;
    }

    .page-title {
      font-size: 30px;
    }

    .layout {
      padding: 34px 20px 64px;
    }

    .faq-question {
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 18px 18px;
    }

    .faq-mark {
      display: none;
    }

    .faq-answer {
      padding: 0 18px 20px;
    }

    .sidebar {
      grid-template-columns: 1fr;
    }
  }

/* Source: about.html */
:root {
    --teal: #118ba4;
    --teal-dark: #075f71;
    --mint: #d9f5f1;
    --sky: #eaf8fb;
    --ink: #164b58;
    --muted: #5f7a80;
    --line: #dcecef;
    --cream: #fff9ef;
    --gold: #f2bd69;
    --white: #fff;
    --shadow: 0 16px 36px rgba(20, 107, 122, .12);
    --radius: 8px;
  }

  * { box-sizing: border-box; }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    margin: 0;
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.75;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .hero-about {
    position: relative;
    overflow: hidden;
    padding: 86px 0 74px;
    background:
      radial-gradient(circle at 14% 24%, rgba(255,255,255,.74) 0 46px, transparent 47px),
      radial-gradient(38px 21px at 82% 16%, rgba(105,187,151,.24) 0 48%, transparent 50%),
      linear-gradient(#ecf5f2 1px, transparent 1px),
      linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
      #f2f8f6;
    background-size: auto, auto, 34px 34px, 34px 34px, auto;
  }

  .hero-about::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(17,139,164,.08);
  }

  .about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    gap: 70px;
    align-items: center;
  }

  .about-photo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .about-photo img {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
  }

  .about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--teal);
    font-weight: 400;
  }

  .label-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 16px;
    border-radius: 999px;
    background: #dff7f8;
    border: 1px solid rgba(17,139,164,.28);
  }

  .hand-note {
    display: inline-flex;
    margin-left: 12px;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .section-title {
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: clamp(36px, 4.1vw, 56px);
    line-height: 1.18;
    letter-spacing: 0;
  }

  .about-copy p {
    margin: 0;
    color: #315f68;
    font-size: 19px;
    font-weight: 700;
    line-height: 2.05;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
    text-align: center;
  }

  .stat {
    padding: 10px;
    color: #52777f;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
  }

  .stat img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
  }

  .stat strong {
    display: block;
    color: var(--teal-dark);
    font-size: 28px;
    line-height: 1.2;
  }

  .story {
    padding: 82px 0 78px;
    background: #fff;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
  }

  .story-card {
    min-height: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 28px rgba(17,86,100,.08);
  }

  .story-card.is-soft {
    background: linear-gradient(135deg, #f6fcfd, #fffaf1);
  }

  .story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--teal);
    font-weight: 900;
  }

  .story-card h2 {
    margin: 0 0 16px;
    color: #2a5b65;
    font-size: 28px;
    line-height: 1.35;
  }

  .story-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
  }

  .values {
    padding: 78px 0 86px;
    background:
      linear-gradient(rgba(234,248,251,.84), rgba(234,248,251,.84)),
      url("../images/img1.webp") center / cover;
  }

  .values-head {
    margin-bottom: 30px;
  }

  .values-head .section-title {
    font-size: clamp(32px, 3.2vw, 44px);
  }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .value-card {
    min-height: 230px;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(17,139,164,.12);
    box-shadow: var(--shadow);
  }

  .value-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .value-card h3 {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-size: 21px;
  }

  .value-card p {
    margin: 0;
    color: #52777f;
    font-size: 16px;
    line-height: 1.85;
  }

  .cta-band {
    padding: 66px 0;
    background: #fff;
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 38px;
    border-radius: var(--radius);
    background: #057b91;
    color: #d8f5f8;
  }

  .cta-inner h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
  }

  .cta-inner p {
    margin: 0;
    max-width: 640px;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    color: #fff;
    background: #ee7783;
    box-shadow: 0 12px 22px rgba(0,0,0,.12);
    white-space: nowrap;
  }

  @media (max-width: 980px) {
    .about-grid,
    .story-grid {
      grid-template-columns: 1fr;
    }

    .about-grid {
      gap: 34px;
    }

    .about-photo {
      justify-content: center;
    }

    .about-photo img {
      width: min(100%, 620px);
      margin: 0 auto;
    }

    .value-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 680px) {
    .hero-about {
      padding: 54px 0 62px;
    }

    .section-title {
      font-size: 36px;
    }

    .about-copy p {
      font-size: 16px;
    }

    .stats {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .stat {
      justify-content: flex-start;
    }

    .story,
    .values {
      padding: 58px 0;
    }

    .story-card,
    .value-card {
      padding: 24px;
    }

    .cta-inner {
      grid-template-columns: 1fr;
      padding: 28px 24px;
    }
  }

/* Source: Check.html */
:root {
    --teal: #118ba4;
    --teal-dark: #075f71;
    --mint: #d9f5f1;
    --sky: #eaf8fb;
    --ink: #164b58;
    --muted: #5f7a80;
    --line: #dcecef;
    --cream: #fff9ef;
    --gold: #f2bd69;
    --coral: #ee7783;
    --white: #fff;
    --shadow: 0 16px 36px rgba(20, 107, 122, .12);
    --radius: 8px;
  }

  * { box-sizing: border-box; }

  html,
  body { overflow-x: hidden; }

  body {
    margin: 0;
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.75;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .check-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 76px;
    background:
      radial-gradient(circle at 15% 24%, rgba(255,255,255,.72) 0 46px, transparent 47px),
      radial-gradient(38px 21px at 82% 16%, rgba(105,187,151,.24) 0 48%, transparent 50%),
      url("../images/img6.webp") right center / auto 76% no-repeat,
      linear-gradient(#ecf5f2 1px, transparent 1px),
      linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
      #f2f8f6;
    background-size: auto, auto, auto 76%, 34px 34px, 34px 34px, auto;
  }

  .check-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(17,139,164,.08);
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 58px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--teal);
    font-weight: 900;
  }

  .label-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 16px;
    border-radius: 999px;
    background: #dff7f8;
    border: 1px solid rgba(17,139,164,.28);
  }

  .hand-note {
    display: inline-flex;
    margin-left: 2px;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .check-title {
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .check-title em {
    color: var(--coral);
    font-style: normal;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0;
    color: #315f68;
    font-size: 19px;
    font-weight: 700;
    line-height: 2;
  }

  .source-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 15px;
  }

  .hero-card {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    border: 1px solid rgba(17,139,164,.12);
  }

  .score-number {
    color: var(--teal-dark);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
  }

  .score-label {
    margin: 8px 0 16px;
    color: var(--muted);
    font-weight: 800;
  }

  .score-status {
    min-height: 70px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--sky);
    color: #315f68;
    font-size: 16px;
    font-weight: 700;
  }

  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 76px 40px 88px;
  }

  .section-head {
    max-width: 820px;
    margin-bottom: 28px;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--teal);
    font-weight: 900;
  }

  .section-title {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.2;
  }

  .section-desc {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
  }

  .check-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
  }

  .checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .check-item {
    position: relative;
    min-height: 128px;
    padding: 22px 22px 22px 68px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 28px rgba(17,86,100,.08);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }

  .check-item:hover {
    transform: translateY(-3px);
    border-color: rgba(17,139,164,.24);
    box-shadow: 0 22px 42px rgba(17,86,100,.13);
  }

  .check-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .check-box {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(17,139,164,.28);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: transparent;
    font-size: 16px;
    transition: all .2s ease;
  }

  .check-item input:checked + .check-box {
    color: #fff;
    background: var(--teal);
    border-color: var(--teal);
  }

  .check-text strong {
    display: block;
    margin-bottom: 6px;
    color: var(--teal-dark);
    font-size: 18px;
  }

  .check-text span {
    color: var(--muted);
    font-size: 16px;
  }

  .result-card {
    position: sticky;
    top: 96px;
    padding: 28px;
    border-radius: var(--radius);
    background: #057b91;
    color: #d8f5f8;
    box-shadow: var(--shadow);
  }

  .result-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
  }

  .result-card p {
    margin: 0 0 18px;
  }

  .result-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
  }

  .result-count strong {
    color: #fff;
    font-size: 52px;
    line-height: 1;
  }

  .result-pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.16);
    font-size: 14px;
    font-weight: 900;
  }

  .management {
    padding: 78px 0 86px;
    background:
      linear-gradient(rgba(234,248,251,.88), rgba(234,248,251,.88)),
      url("../images/img1.webp") center / cover;
  }

  .exercise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .exercise-card {
    min-height: 100%;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(17,139,164,.12);
    box-shadow: var(--shadow);
  }

  .exercise-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    color: var(--teal);
    background: #dff7f8;
    font-size: 14px;
    font-weight: 900;
  }

  .exercise-card h3 {
    margin: 16px 0 12px;
    color: var(--teal-dark);
    font-size: 24px;
  }

  .exercise-card p {
    margin: 0 0 16px;
    color: #52777f;
    font-size: 16px;
    line-height: 1.9;
  }

  .exercise-steps {
    margin: 0;
    padding-left: 20px;
    color: #315f68;
  }

  .exercise-steps li {
    margin-bottom: 9px;
  }

  .reference {
    padding: 58px 0 66px;
    background: #fff;
  }

  .reference-box {
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 28px rgba(17,86,100,.08);
    color: var(--muted);
  }

  .reference-box strong {
    color: var(--teal-dark);
  }

  @media (max-width: 980px) {
    .hero-grid,
    .check-panel,
    .exercise-grid {
      grid-template-columns: 1fr;
    }

    .hero-card,
    .result-card {
      position: static;
    }
  }

  @media (max-width: 680px) {
    .check-hero {
      padding: 54px 0 58px;
      background:
        linear-gradient(#ecf5f2 1px, transparent 1px),
        linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
        #f2f8f6;
      background-size: 34px 34px, 34px 34px, auto;
    }

    .layout {
      padding: 58px 20px 68px;
    }

    .hero-copy,
    .section-desc {
      font-size: 16px;
    }

    .checklist {
      grid-template-columns: 1fr;
    }

    .check-item {
      min-height: auto;
    }

    .management {
      padding: 58px 0;
    }

    .exercise-card,
    .reference-box {
      padding: 24px;
    }
  }

/* Source: events.html */
:root {
    --teal: #118ba4;
    --teal-dark: #075f71;
    --mint: #d9f5f1;
    --sky: #eaf8fb;
    --ink: #164b58;
    --muted: #5f7a80;
    --line: #dcecef;
    --cream: #fff9ef;
    --gold: #f2bd69;
    --coral: #ee7783;
    --white: #fff;
    --shadow: 0 16px 36px rgba(20, 107, 122, .12);
    --radius: 8px;
  }

  * { box-sizing: border-box; }

  html,
  body { overflow-x: hidden; }

  body {
    margin: 0;
    font-family: "Huninn", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.75;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .events-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 70px;
    background:
      radial-gradient(circle at 14% 24%, rgba(255,255,255,.72) 0 46px, transparent 47px),
      radial-gradient(38px 21px at 82% 16%, rgba(105,187,151,.24) 0 48%, transparent 50%),
      url("../images/img6.webp") right center / auto 76% no-repeat,
      linear-gradient(#ecf5f2 1px, transparent 1px),
      linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
      #f2f8f6;
    background-size: auto, auto, auto 76%, 34px 34px, 34px 34px, auto;
  }

  .events-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(17,139,164,.08);
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 54px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--teal);
    font-weight: 900;
  }

  .label-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 16px;
    border-radius: 999px;
    background: #dff7f8;
    border: 1px solid rgba(17,139,164,.28);
  }

  .hand-note {
    display: inline-flex;
    margin-left: 12px;
    color: #e59033;
    font-family: "Segoe Print", "Comic Sans MS", "Huninn", cursive;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1;
    font-weight: 400;
    opacity: .9;
  }

  .page-title {
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.12;
  }

  .page-title em {
    color: var(--coral);
    font-style: normal;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0;
    color: #315f68;
    font-size: 19px;
    font-weight: 700;
    line-height: 2;
  }

  .hero-card {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,139,164,.12);
    box-shadow: var(--shadow);
  }

  .hero-card strong {
    display: block;
    color: var(--teal-dark);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .hero-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
  }

  .layout {
    max-width: 1338px;
    margin: 0 auto;
    padding: 70px 40px 88px;
  }

  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--teal);
    font-weight: 900;
  }

  .section-title {
    margin: 0;
    color: var(--teal-dark);
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.2;
  }

  .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .filter-tab {
    min-height: 38px;
    border: 1px solid rgba(17,139,164,.24);
    border-radius: 999px;
    background: #fff;
    padding: 0 18px;
    color: var(--muted);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s, background .2s, border-color .2s;
  }

  .filter-tab:hover,
  .filter-tab.active {
    color: #fff;
    background: var(--teal);
    border-color: var(--teal);
  }

  .event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .event-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f3f3f3;
    box-shadow: 0 14px 28px rgba(17,86,100,.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(17,139,164,.22);
    box-shadow: 0 22px 42px rgba(17,86,100,.14);
  }

  .event-poster {
    position: relative;
    aspect-ratio: 145 / 118;
    overflow: hidden;
    background: #ddd;
  }

  .event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .poster-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #ddd;
  }

  .poster-art::before {
    content: "SURREALISM";
    position: absolute;
    left: -10px;
    top: -26px;
    color: rgba(255,255,255,.76);
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 1px;
  }

  .poster-art::after {
    content: attr(data-label);
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 180px;
    color: #111;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 1px 0 rgba(255,255,255,.7);
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    background:
      radial-gradient(circle at 62% 40%, #fff 0 13%, #111 14% 22%, transparent 23%),
      repeating-conic-gradient(from 0deg, rgba(0,0,0,.7) 0 8deg, transparent 8deg 16deg),
      var(--orb-color);
  }

  .orb.is-large {
    right: 24px;
    top: 24px;
    width: 190px;
    height: 190px;
  }

  .orb.is-small {
    left: 100px;
    bottom: 34px;
    width: 104px;
    height: 104px;
  }

  .poster-time {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 5px 10px;
    color: #111;
    background: rgba(255,255,255,.76);
    font-size: 14px;
    font-weight: 900;
  }

  .event-body {
    padding: 20px 22px 22px;
  }

  .event-title-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    margin-bottom: 10px;
  }

  .event-card h2 {
    margin: 0;
    color: #4a5559;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reserve-btn {
    min-width: 58px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #e59033;
    font-size: 15px;
    font-weight: 900;
  }

  .event-date {
    margin: 0 0 12px;
    color: #5f686c;
    font-size: 17px;
  }

  .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .event-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    color: #fff;
    background: #387482;
    border-radius: 6px;
    font-size: 14px;
  }

  .event-tag.is-green {
    color: #fff;
    background: #387482;
  }

  .event-tag.is-teal {
    color: #fff;
    background: #387482;
  }

  .event-feature {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .feature-card {
    min-height: 100%;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 28px rgba(17,86,100,.08);
  }

  .feature-card h3 {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: 24px;
  }

  .feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
  }

  @media (max-width: 1100px) {
    .hero-grid,
    .event-grid,
    .event-feature {
      grid-template-columns: 1fr;
    }

    .hero-card {
      max-width: 420px;
    }
  }

  @media (max-width: 680px) {
    .events-hero {
      padding: 54px 0 58px;
      background:
        linear-gradient(#ecf5f2 1px, transparent 1px),
        linear-gradient(90deg, #ecf5f2 1px, transparent 1px),
        #f2f8f6;
      background-size: 34px 34px, 34px 34px, auto;
    }

    .layout {
      padding: 54px 20px 68px;
    }

    .section-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .event-card h2 {
      white-space: normal;
    }

    .orb.is-large {
      width: 150px;
      height: 150px;
    }

    .orb.is-small {
      width: 84px;
      height: 84px;
      left: 70px;
    }
  }


