@charset "utf-8";
/* ============================================================
   town-landing.css — 鄉鎮入口頁版型(大圖 editorial 風)
   來源:使用者提供的設計稿
        https://019feeb5-74d3-7ddc-8116-90e41a39f0c0.arena.site/
        原稿為 Tailwind v4,已逐項換算為純 CSS 元件
   對應:jiaoxi-bnb.php(礁溪鄉入口頁)
   範圍:僅作用於 .tl 容器內,不影響 header / footer 與其他頁面
   ※ 含中文註解,編輯後請務必存成「UTF-8 無 BOM」
   ============================================================ */

/* ── Tokens(取自設計稿 --color-* / 字型 / 圓角)────────────────── */
.tl {
  --tl-cream: #f8f6f0;
  --tl-cream-warm: #f2efe8;
  --tl-forest: #1f3a22;
  /* forest-deep #162b19 只用於 Hero 漸層遮罩,直接以 rgba(22,43,25,…) 寫入,故不另設變數 */
  --tl-ink: #1e1c18;
  --tl-ink-soft: #4a4742;
  --tl-ink-muted: #8a8478;
  --tl-gold-soft: #c9b898;

  --tl-font-display: 'Noto Serif TC', 'Songti TC', serif;
  --tl-font-sans: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;

  --tl-r-md: 6px;
  --tl-r-lg: 8px;
  --tl-r-2xl: 16px;
  --tl-r-3xl: 24px;
  --tl-r-full: 999px;

  --tl-shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --tl-shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --tl-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.06), 0 4px 6px -4px rgba(0,0,0,.06);
  --tl-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);

  --tl-ease: cubic-bezier(.4,0,.2,1);

  background: var(--tl-cream);
  color: var(--tl-ink);
  font-family: var(--tl-font-sans);
  font-size: 16px;
  line-height: 1.7;
  /* 解除 mob/css/main.css 的全域 #wrapper{text-align:center} */
  text-align: left;
}

.tl *, .tl *::before, .tl *::after { box-sizing: border-box; }
/* 注意:這裡不可寫 `.tl a{display:inline}` 或 `.tl p{margin:0}`——
   它們的權重(0,1,1)會蓋過各元件的 .tl-xxx(0,1,0)宣告,
   造成卡片/按鈕 display 與段落 margin 失效。各元件自行宣告即可。 */
.tl a { text-decoration: none; color: inherit; }
.tl img { display: block; max-width: 100%; }

/* 區段小標(眼眉):leaf 圖示 + 11px 大寫寬字距 */
.tl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(31,58,34,.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.tl-eyebrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; transform: rotate(-12deg); }

/* 區段大標:襯線 900 字重、緊字距 */
.tl h2.tl-h2 {
  /* 解除 main.css 全域 h2{position:absolute;opacity:0} */
  position: static;
  bottom: auto;
  left: auto;
  width: auto;
  opacity: 1;
  font-family: var(--tl-font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--tl-ink);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 22px;
}
/* 區段標頭內的 h2 由標頭本身控制間距 */
.tl-section-head h2.tl-h2 { margin-bottom: 0; }
.tl h2.tl-h2.is-close { margin-bottom: 18px; }
/* 同一區段內的第二組標題 */
.tl-eyebrow.is-next { margin-top: 40px; }

/* ── Hero ─────────────────────────────────────────────────── */
.tl-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.tl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: tl-zoom 20s ease-in-out infinite alternate;
}
@keyframes tl-zoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .tl-hero-img { animation: none; } }

.tl-hero::after,
.tl-hero-shade {
  content: "";
  position: absolute;
  inset: 0;
}
.tl-hero::after {
  background: linear-gradient(90deg, rgba(22,43,25,.75) 0%, rgba(22,43,25,.4) 50%, rgba(22,43,25,0) 100%);
}
.tl-hero-shade {
  background: linear-gradient(180deg, rgba(22,43,25,.3) 0%, rgba(22,43,25,0) 45%, rgba(22,43,25,.4) 100%);
  z-index: 1;
}

.tl-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 20px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── 膠囊麵包屑選單(大圖下方、精選民宿上方)──────────────────
   與 BreadcrumbList 結構化資料對應 */
.tl-crumbbar {
  background: var(--tl-cream);
  border-bottom: 1px solid rgba(234,230,216,.8);
}
.tl-crumbbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tl-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(234,230,216,.95);
  border-radius: var(--tl-r-full);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--tl-ink-soft);
  box-shadow: var(--tl-shadow-sm);
  transition: border-color .2s var(--tl-ease), color .2s var(--tl-ease), background .2s var(--tl-ease);
}
.tl-pill:hover {
  border-color: var(--tl-gold-soft);
  background: #fff;
  color: var(--tl-ink);
}
.tl-pill.is-current {
  background: var(--tl-gold-soft);
  border-color: var(--tl-gold-soft);
  color: var(--tl-ink);
  font-weight: 700;
}

/* 地點膠囊 */
.tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(31,58,34,.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tl-r-full);
  padding: 6px 16px;
  margin: 0 0 24px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.tl-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* 巨型主標 */
.tl h1.tl-h1 {
  font-family: var(--tl-font-display);
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: .85;
  letter-spacing: -.05em;
  margin: 0;
  text-shadow: 0 25px 25px rgba(0,0,0,.15);
}
.tl-kicker {
  font-family: var(--tl-font-display);
  font-size: 17px;
  font-weight: 400;
  color: rgba(248,246,240,.95);
  letter-spacing: .025em;
  /* 與主標之間的行距(依指示加大) */
  margin: 24px 0 0;
  text-shadow: 0 4px 4px rgba(0,0,0,.15);
}
.tl-lede {
  max-width: 576px;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin: 20px 0 0;
  text-shadow: 0 3px 3px rgba(0,0,0,.12);
}

/* 特色標籤玻璃面板 */
.tl-facts {
  align-self: flex-start;
  width: 100%;
  margin: 32px 0 0;
  background: rgba(22,43,25,.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tl-r-2xl);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.2);
}
.tl-facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
  justify-content: space-between;
}
.tl-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: var(--tl-r-lg);
  transition: background .2s var(--tl-ease);
}
.tl-fact:hover { background: rgba(255,255,255,.1); }
.tl-fact-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.05);
  transition: background .2s var(--tl-ease);
}
.tl-fact:hover .tl-fact-ico { background: rgba(255,255,255,.2); }
.tl-fact-ico svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; }
.tl-fact span {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(248,246,240,.95);
  letter-spacing: .025em;
  white-space: nowrap;
}

/* ── 區段外框 ─────────────────────────────────────────────── */
.tl-section { background: var(--tl-cream); }
.tl-section.is-warm {
  background: var(--tl-cream-warm);
  border-top: 1px solid rgba(234,230,216,.5);
}
.tl-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}
.tl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 24px;
}

/* ── 卡片(民宿 / 景點共用)────────────────────────────────── */
.tl-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(234,230,216,.5);
  border-radius: var(--tl-r-2xl);
  overflow: hidden;
  box-shadow: var(--tl-shadow-sm);
  transition: box-shadow .5s var(--tl-ease), transform .5s var(--tl-ease);
}
.tl-card:hover { box-shadow: var(--tl-shadow-2xl); transform: translateY(-4px); }
.tl-card-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--tl-cream-warm);
}
.tl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--tl-ease);
}
.tl-card:hover .tl-card-img img { transform: scale(1.05); }
.tl-card-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(31,58,34,.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 10px;
  border-radius: var(--tl-r-full);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.tl-card-body { display: block; padding: 20px; }
.tl-card-name {
  display: block;
  font-family: var(--tl-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--tl-ink);
  line-height: 1.375;
  letter-spacing: -.025em;
  margin: 0;
  transition: color .2s var(--tl-ease);
}
.tl-card:hover .tl-card-name { color: var(--tl-forest); }
.tl-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.tl-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--tl-ink-muted);
  background: var(--tl-cream-warm);
  border: 1px solid rgba(234,230,216,.6);
  border-radius: var(--tl-r-md);
  padding: 2px 8px;
  letter-spacing: .025em;
}
.tl-card-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(234,230,216,.4);
  color: var(--tl-ink-muted);
  font-size: 13px;
}
.tl-card-foot svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex: 0 0 auto; }
.tl-card-note { display: block; font-size: 13px; color: var(--tl-ink-muted); font-weight: 500; margin: 6px 0 0; }
/* 景點卡:標題略小 */
.tl-card-name.is-sm { font-size: 16px; }

/* 精選民宿四格:桌機一列四家、剛好塞滿容器不外溢
   (設計稿為橫向 snap 輪播,但四家會超出電腦版可見範圍,改為格線)*/
.tl-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
/* 同列卡片等高(標籤換行時不會高低不齊)*/
.tl-rail > * { display: flex; }
.tl-rail > * > .tl-card,
.tl-grid4 > .tl-card { width: 100%; height: 100%; }

/* 景點四格 */
.tl-grid4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }

/* ── 按鈕:暖沙底 + 墨色字(不再用墨綠)──────────────────────
   箭頭包在白色小圓內,hover 時整顆加深、箭頭右移 */
.tl-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 28px 0 0; }
.tl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--tl-gold-soft);
  color: var(--tl-ink);
  border: 1px solid var(--tl-gold-soft);
  border-radius: var(--tl-r-full);
  padding: 8px 10px 8px 24px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: var(--tl-shadow-sm);
  transition: background .25s var(--tl-ease), border-color .25s var(--tl-ease), box-shadow .25s var(--tl-ease);
}
.tl-btn:hover {
  background: #bda57f;
  border-color: #bda57f;
  color: var(--tl-ink);
  box-shadow: var(--tl-shadow-md);
}
.tl-btn-ico {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--tl-ease);
}
.tl-btn:hover .tl-btn-ico { transform: translateX(3px); }
.tl-btn-ico svg { width: 14px; height: 14px; stroke: var(--tl-ink); fill: none; stroke-width: 2; }
/* 次要按鈕:白底描邊 */
.tl-btn.is-ghost {
  background: #fff;
  color: var(--tl-ink-soft);
  border-color: rgba(234,230,216,.95);
  padding: 12px 24px;
}
.tl-btn.is-ghost:hover {
  background: #fff;
  border-color: var(--tl-gold-soft);
  color: var(--tl-ink);
}
.tl-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(234,230,216,.4);
  border-radius: var(--tl-r-3xl);
  box-shadow: var(--tl-shadow-lg);
  padding: 28px;
}
.tl-panel::before,
.tl-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}
.tl-panel::before { top: -40px; right: -40px; width: 160px; height: 160px; background: rgba(31,58,34,.04); }
.tl-panel::after { bottom: -32px; left: -32px; width: 128px; height: 128px; background: rgba(201,184,152,.3); }

/* ── 快速重點:三欄卡 ──────────────────────────────────────── */
.tl-notes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.tl-note {
  background: #fff;
  border: 1px solid rgba(234,230,216,.5);
  border-radius: var(--tl-r-2xl);
  padding: 22px 24px;
  box-shadow: var(--tl-shadow-sm);
}
.tl-note-no {
  font-family: var(--tl-font-display);
  font-size: 19px;
  font-weight: 900;
  color: var(--tl-gold-soft);
  line-height: 1;
  display: block;
  margin: 0 0 10px;
}
.tl-note-t { font-size: 14.5px; font-weight: 500; color: var(--tl-ink); margin: 0 0 6px; }
.tl-note-d { font-size: 13px; line-height: 1.75; color: var(--tl-ink-soft); margin: 0; }

/* ── 區域比較:白底面板內的列 ───────────────────────────────── */
.tl-areas { position: relative; z-index: 1; }
.tl-area {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(234,230,216,.7);
}
.tl-area:first-child { padding-top: 0; border-top: 0; }
.tl-area-name {
  flex: 0 0 148px;
  font-family: var(--tl-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--tl-forest);
  line-height: 1.45;
}
.tl-area-body { flex: 1; min-width: 0; }
.tl-area-d { font-size: 13.5px; line-height: 1.75; color: var(--tl-ink); margin: 0 0 5px; }
.tl-area-m { font-size: 12.5px; color: var(--tl-ink-muted); margin: 0; }
.tl-area-m span + span::before { content: "·"; margin: 0 7px; opacity: .6; }
.tl-note-line { position: relative; z-index: 1; font-size: 12.5px; color: var(--tl-ink-muted); margin: 20px 0 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.tl-faq { margin: 0; }
.tl-faq dt {
  position: relative;
  padding: 0 0 0 26px;
  margin: 20px 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tl-ink);
  line-height: 1.6;
}
.tl-faq dt:first-child { margin-top: 0; }
.tl-faq dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: .15em;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  font-size: 11px;
  font-family: Arial, sans-serif;
  border-radius: 50%;
  background: var(--tl-forest);
  color: #fff;
}
.tl-faq dd {
  margin: 0 0 0 26px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--tl-ink-soft);
}

/* ── FAQ 點選展開版(2026-09-03;JSON-LD 與可見文字同源,只改標記不改內容)── */
.tl-faq-acc { border-top: 1px solid rgba(31,58,34,.14); }
.tl-faq-item { border-bottom: 1px solid rgba(31,58,34,.14); text-align: left; }
.tl-faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 14px 34px 14px 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tl-ink);
  line-height: 1.6;
  transition: color .2s var(--tl-ease);
}
.tl-faq-item summary::-webkit-details-marker { display: none; }
.tl-faq-item summary:hover,
.tl-faq-item[open] summary { color: var(--tl-forest); }
.tl-faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: calc(14px + .15em);
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  font-size: 11px;
  font-family: Arial, sans-serif;
  border-radius: 50%;
  background: var(--tl-forest);
  color: #fff;
}
.tl-faq-item summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--tl-ink-muted);
  border-bottom: 2px solid var(--tl-ink-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--tl-ease);
}
.tl-faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.tl-faq-a {
  margin: 0;
  padding: 0 12px 16px 26px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--tl-ink-soft);
}

/* ── 延伸連結膠囊列(鄉鎮互連與站群外連)────────────────────── */
.tl-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
}

/* ── 頁內錨點:平滑滾動並扣掉固定導覽列 ─────────────────────── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.tl [id] { scroll-margin-top: 96px; }

/* ── 內文段落面板 ─────────────────────────────────────────── */
.tl-prose { position: relative; z-index: 1; font-size: 14.5px; line-height: 1.95; color: var(--tl-ink-soft); margin: 0; }

/* ── bnb26 完整名單容器 ───────────────────────────────────── */
.tl-listing .bnb-wrapper { font-family: var(--tl-font-sans); }
.tl-listing .bnb-wrapper .listings-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.tl-listing .bnb-wrapper .photo-container { height: 180px; }

/* ── 響應式 ───────────────────────────────────────────────── */
@media (min-width: 768px) {
  .tl-hero-inner, .tl-section-inner, .tl-crumbbar-inner { padding-left: 32px; padding-right: 32px; }
  .tl-hero { height: 600px; }
  .tl-hero-inner { padding-top: 112px; padding-bottom: 96px; }
  .tl h1.tl-h1 { font-size: 60px; }
  .tl-kicker { font-size: 19px; margin-top: 26px; }
  .tl-lede { font-size: 14.5px; }
  .tl h2.tl-h2 { font-size: 24px; }
  .tl-section-inner { padding-top: 56px; padding-bottom: 56px; }
  .tl-facts { width: auto; min-width: 540px; padding: 20px; }
  .tl-facts-row { gap: 12px 24px; justify-content: flex-start; }
  .tl-card-body { padding: 24px; }
  .tl-card-name { font-size: 18px; }
  .tl-rail { gap: 20px; }
  .tl-grid4 { gap: 20px; }
  .tl-panel { padding: 36px; }
}

@media (min-width: 1024px) {
  .tl-hero-inner, .tl-section-inner, .tl-crumbbar-inner { padding-left: 40px; padding-right: 40px; }
  .tl-hero { height: 660px; }
  .tl-hero-inner { padding-bottom: 112px; }
  .tl h1.tl-h1 { font-size: 76px; }
  .tl-kicker { font-size: 22px; margin-top: 30px; }
  .tl h2.tl-h2 { font-size: 26px; }
  .tl-section-inner { padding-top: 64px; padding-bottom: 64px; }
  .tl-facts { min-width: 640px; }
  .tl-panel { padding: 40px; }
}

@media (max-width: 900px) {
  .tl-notes, .tl-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tl-grid4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tl-listing .bnb-wrapper .listings-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .tl-hero { height: 470px; }
  .tl h1.tl-h1 { font-size: 38px; }
  .tl-section-inner { padding-top: 36px; padding-bottom: 36px; }
  .tl-section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .tl-notes, .tl-grid4, .tl-rail { grid-template-columns: 1fr; }
  .tl-area { flex-direction: column; gap: 6px; }
  .tl-area-name { flex: 0 0 auto; }
  .tl-panel { padding: 24px 20px; border-radius: var(--tl-r-2xl); }
  .tl-listing .bnb-wrapper .listings-grid { grid-template-columns: 1fr; }
  .tl-facts { padding: 14px; }
  .tl-facts-row { gap: 10px 6px; }
  .tl-fact span { font-size: 12.5px; }
}

/* 手機 hero 大標被切(2026-09-08):hero 固定高度、內容靠底對齊,窄螢幕內容比 hero 高時大標被推出上緣;改為高度隨內容長、固定高度改為最小高度 */
@media (max-width: 767px) {
  .tl-hero { height: auto; min-height: 520px; }
  .tl-hero-inner { height: auto; min-height: 520px; padding-top: 104px; padding-bottom: 48px; }
}
@media (max-width: 640px) {
  .tl-hero { min-height: 470px; }
  .tl-hero-inner { min-height: 470px; }
}
