:root {
    --primary-color: #008489;
    --secondary-color: #20c997;
    --accent-yellow: #ffeb3b;
    --light-blue-bg: #e0f7fa;
    --dark-text: #333;
    --header-text: #008489;
}

body {
    font-family: "Microsoft JhengHei", "PingFang TC", sans-serif;
    color: var(--dark-text);
    background-color: #fff;
}

/* --- Header 導航 --- */
.navbar {
    background-color: #fff;
    padding: 15px 0;
}

.navbar-brand {
    color: var(--header-text) !important;
    font-weight: bold;
    font-size: 24px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    min-width: 120px;
    height: 45px;
}

.nav-btn-yellow {
    background: linear-gradient(to right, #ffeb3b, #fbc02d);
}

.nav-btn-green {
    background: linear-gradient(to right, #69f0ae, #00c853);
}

.nav-btn .icon-circle {
    background: white;
    color: #ccc;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 10px;
}

.navbar-toggler{
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}

@media (max-width: 991.98px){
    .nav-buttons{
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
    }

    .nav-btn{
        width: 100%;
        justify-content: space-between;
    }
}

.navbar-toggler{
    border: none;
    padding: 6px 10px;
}

.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}

@media (max-width: 991.98px){
    .navbar .container{
        align-items: center;
    }

    .navbar-collapse{
        background: #fff;
        margin-top: 12px;
        padding: 12px 0;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .nav-buttons{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-btn{
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }
}

.branch-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    min-width: 120px;
    max-width: 150px;
    height: 45px;
    margin: 15px auto 0;       /* 整個按鈕置中 */
}

.branch-btn-green {
    background: linear-gradient(to right, #69f0ae, #00c853);
}

/* --- Hero 區塊 (弧形設計) --- */
.hero-section{
  position: relative;
  height: 760px;
  overflow: hidden;
  background: url("../img/BANNER.jpg") center/cover no-repeat;
}

/* 文字區（置中、上方留白像設計稿） */
.hero-overlay-text{
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 170px;
  color: #008489;
}

/* 主標 */
.hero-overlay-text h1{
  font-size: 46px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: .5px;
}

/* 副標（上下細線） */
.hero-overlay-text .sub-title{
  font-size: 26px;
  font-weight: 700;
  color: #666;
  display: inline-block;
  position: relative;
  padding: 8px 80px;
  margin-bottom: 10px;
}

.hero-overlay-text .sub-title:before,
.hero-overlay-text .sub-title:after{
  content:"";
  position:absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  background: rgba(0,132,137,.35);
  transform: translateY(-50%);
}

.hero-overlay-text .sub-title:before{ left: 0; }
.hero-overlay-text .sub-title:after{ right: 0; }

/* 核心句 */
.hero-overlay-text .core-values{
  font-size: 20px;
  font-weight: 800;
  color: #555;
}

/* 弧形山丘 */
.hero-curve{
  position: absolute;
  left: 50%;
  bottom: -210px;     /* 控制弧形高度（越小越高） */
  transform: translateX(-50%);
  width: 140%;
  height: 520px;
  z-index: 3;
  pointer-events: none;
}

/* 青色外框弧 */
.hero-curve:before{
  content:"";
  position:absolute;
  inset: 0;
  background: #bfefff;              /* 青色外框 */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* 內層白色弧（做出外框厚度） */
.hero-curve:after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 0;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* 弧形內容（白色區的文字） */
.hero-curve-content{
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  width: min(820px, 92vw);
  z-index: 5;
  text-align: center;
  color: #777;
  font-size: 18px;
  line-height: 2;
}

/* 藍色泡泡裝飾 */
.bubble{
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.22) 0%, rgba(0, 188, 212, 0) 70%);
  z-index: 6;
}

.bubble-1{ width: 170px; height: 170px; bottom: 170px; left: 6%; }
.bubble-2{ width: 140px; height: 140px; bottom: 155px; right: 8%; }

/* --- 文章分享區塊 --- */
.article-section {
    background-color: var(--light-blue-bg);
    padding: 80px 0;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
}

.article-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.article-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    border-top:1px solid #eee;
}

.article-item:first-child{
    border-top:none;
}

.article-text{
    min-width:0;
}

/* 日期 */

.article-date{
    font-size:12px;
    color:#777;
    font-weight:600;
    margin-bottom:4px;
}

/* 標題 */

.article-title{
    font-size:15px;
    font-weight:700;
    color:#333;
    line-height:1.5;
}

/* 箭頭 */

.article-arrow{
    width:34px;
    height:34px;
    background:#39b6c6;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:bold;
}

/* --- 服務項目 --- */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: bold;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    background: #4dd0e1;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.8;
}

@media (max-width: 768px){

  .services-section .row{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    margin-left: -8px;
    margin-right: -8px;
    -webkit-overflow-scrolling: touch;
  }

  .services-section .row > [class*="col-"]{
    flex: 0 0 82%;
    max-width: 82%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .services-section .service-card{
    margin-bottom: 0;
  }

  .services-section .row::-webkit-scrollbar{
    height: 6px;
  }

  .services-section .row::-webkit-scrollbar-thumb{
    background: rgba(0,132,137,.35);
    border-radius: 999px;
  }
}

/* --- 分店資訊 --- */
.branch-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.branch-map-thumb {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    background-size: cover;
}

.branch-details h4 {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.branch-details p {
    margin-bottom: 5px;
    color: #666;
}

/* --- Footer --- */
.footer {
    background-color: #006064;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* 響應式 */
@media (max-width: 768px){
  .hero-section{ height: 680px; }
  .hero-overlay-text{ padding-top: 100px; }

  .hero-overlay-text h1{ font-size: 34px; }
  .hero-overlay-text .sub-title{
    font-size: 20px;
    padding: 8px 50px;
  }
  .hero-overlay-text .sub-title:before,
  .hero-overlay-text .sub-title:after{
    width: 40px;
  }

  .hero-curve{
    width: 160%;
    bottom: -230px;
    height: 540px;
  }

  .hero-curve-content{
    top: 115px;
    font-size: 16px;
  }
}

/* --- 我們的特色 --- */
.features-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: bold;
}

.features-list li::before {
    content: "•";
    color: #333;
    font-size: 24px;
    margin-right: 15px;
}

.features-img-container {
    position: relative;
    padding: 20px;
}

.features-img-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.features-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #4dd0e1 0%, #00acc1 100%);
    border-radius: 20px;
    z-index: 1;
    transform: rotate(3deg);
}

/* --- 部落格推薦 --- */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.blog-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
}

.blog-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 15px;
    position: relative;
}

.blog-card-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
    padding-left: 25px;
    position: relative;
}

.blog-card-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 15px;
    height: 15px;
    background-color: #4dd0e1;
    border-radius: 50%;
}
/* ====== 形象大圖（調成設計稿比例） ====== */
.quote-section{
  padding: 50px 0 20px;
  background: #fff;
}

.quote-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 320px;            /* 你原本 260 太扁 */
  max-width: 1180px;        /* 稍微放寬，視覺更接近設計稿 */
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}

.quote-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
}

.quote-text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding: 0 20px;
  z-index:2;
}

.quote-text h3{
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.quote-text p{
  margin:0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

/* ====== CTA：設計稿是白底（不是淡藍） ====== */
.cta-section{
  background: #fff;         /* ✅ 改白底 */
  padding: 10px 0 20px;     /* 更貼近設計稿：離 quote 更近、下方不留大空白 */
  position: relative;
  overflow: visible;        /* 讓泡泡可以超出一點點 */
}

.cta-wrap{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 12px;
}

.cta-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  width: 100%;
  max-width: 720px;
  background: linear-gradient(90deg, #45d6e6, #23c2cf);
  color:#fff;
  border-radius: 999px;
  padding: 16px 18px 16px 22px;
  font-weight: 800;
  text-decoration:none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cta-pill:hover{ color:#fff; text-decoration:none; }
.cta-text{ font-size: 16px; line-height:1.4; }

.cta-arrow{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color:#5b5b5b;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

/* ====== 泡泡改用圖檔（更像設計稿） ====== */
.cta-bubble{
  position:absolute;
  pointer-events:none;
  user-select:none;
  opacity: .9;
}

.cta-bubble-left{
  left: -40px;
  top: 0px;
  width: 160px;
}

.cta-bubble-right{
  right: -40px;
  bottom: -10px;
  width: 190px;
}

/* 手機版：泡泡縮小、不要擠到 CTA */
@media (max-width: 768px){
  .quote-card{ height: 240px; border-radius: 22px; }
  .quote-text h3{ font-size: 20px; }
  .quote-text p{ font-size: 15px; }

  .cta-wrap{ padding: 12px 0 6px; }
  .cta-pill{ border-radius: 18px; }

  .cta-bubble-left{ width: 110px; left: -18px; top: -6px; }
  .cta-bubble-right{ width: 125px; right: -18px; bottom: -10px; }
}

/* --- 分店資訊（藍底） --- */
.branches-section{
  padding: 80px 0;
  background-color: #d7f1f6;
}
.branches-section .section-title{
  position: relative;
  display: inline-block;
  margin-left:auto;
  margin-right:auto;
  padding-bottom: 12px;
}
.branches-section .section-title::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 4px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.branches-section .container{ text-align:center; }
.branches-section .row{ text-align:left; }

.branch-item{
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.branch-item:last-child{
  border-bottom:none;
  padding-bottom: 0;
}

@media (max-width: 768px){
  .quote-card{ height: 220px; }
  .quote-text p{ font-size: 16px; }
  .cta-pill{ border-radius: 18px; }
  .cta-text{ font-size: 15px; }
}

/* ===== 分店資訊（對齊你截圖） ===== */
.branches-section{
  padding: 80px 0;
  background: var(--light-blue-bg);
}

.section-title-line{
  display:inline-block;
  position: relative;
  padding-bottom: 12px;
}

.section-title-line::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:0;
  height:4px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.branches-wrap{
  max-width: 920px;
  margin: 0 auto;
}

.branch-row{
  display:flex;
  align-items:center;
  gap: 26px;
  padding: 28px 0;
}

.branch-map{
  width:180px;
  flex:0 0 180px;
}

.branch-map iframe{
  width:180px;
  height:180px;
  border:0;
  border-radius:18px;
}

.branch-map img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  display:block;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.branch-info{
  flex: 1 1 auto;
}

.branch-name{
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.branch-meta{
  margin: 0 0 6px;
  color: #333;
  font-weight: 600;
}

.branch-divider{
  height: 1px;
  background: rgba(0,0,0,.18);
}

/* MORE 膠囊按鈕 */
.btn-more-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  min-width: 160px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #4dd0e1;
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.btn-more-pill:hover{
  color:#fff;
  text-decoration:none;
  filter: brightness(.98);
}

.more-arrow{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color:#666;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
}

/* ===== Footer（對齊你截圖：深綠資訊型） ===== */
.site-footer{
  background: #006064;
  color:#e8ffff;
  padding: 22px 0 10px;
}

.footer-top{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-logo{
  max-height: 44px;
  width: auto;
}

.footer-brand-text{
  font-weight: 800;
  letter-spacing: .5px;
}

.footer-info{
  list-style:none;
  padding:0;
  margin:0;
  font-weight: 600;
  opacity: .95;
}

.footer-info li{
  margin-bottom: 6px;
  display:flex;
  align-items:flex-start;
  gap: 10px;
}

.footer-info i{
  width: 18px;
  margin-top: 2px;
  text-align:center;
}

.footer-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 14px;
  flex-wrap:wrap;
}

.footer-link{
  color:#e8ffff;
  font-weight: 700;
  text-decoration:none;
  opacity:.95;
}

.footer-link:hover{
  color:#fff;
  text-decoration:none;
  opacity: 1;
}

.footer-link i{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.footer-bottom{
  padding-top: 10px;
  font-size: 12px;
  opacity:.85;
}

/* RWD */
@media (max-width: 768px){
  .branch-row{
    gap: 16px;
  }
  .branch-map{
    width: 120px;
    flex: 0 0 120px;
  }
  .branch-map img{
    width: 120px;
    height: 120px;
  }
  .footer-links{
    justify-content:flex-start;
  }
}

@media (max-width: 576px){
  .branch-row{
    flex-direction: column;
    align-items:flex-start;
  }
  .branch-map, .branch-map img{
    width: 100%;
    height: auto;
  }
  .branch-map img{
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   news_content.php 專用
========================================================= */

.news-ct{
  background:#fff;
}

/* =========================================
   HERO / BANNER
   ========================================= */

.news-ct-hero{
  position:relative;
}

/* 滿版 Banner */
.news-ct-banner{
  width:100%;
  height:360px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* Banner 上遮罩 */
.news-ct-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
}


/* 文字區 */
.news-ct-hero-text{
  position:absolute;
  left:0;
  right:0;
  bottom:-40px; /* 關鍵：讓底板跨出 Banner */
  text-align:center;
  z-index:5;
}

.news-ct-title{
  color:#fff;
  font-size:44px;
  font-weight:800;
  margin-bottom:16px;
}


/* 綠色底板 */
.news-ct-subpill{
  display:inline-block;
  background:#0f7f79;
  color:#fff;
  padding:16px 28px;
  font-size:18px;
  font-weight:700;
  border-radius:14px;
  line-height:1.6;
  box-shadow:0 14px 30px rgba(0,0,0,.2);
}


/* =========================================
   BODY
   ========================================= */

.news-ct-body{
  background:#cfe5e9;
  padding-top:100px; /* 給跨出 Banner 的底板空間 */
  padding-bottom:80px;
  position:relative;
}


/* 文章區塊 */
.news-ct-card{
  max-width:980px;
  margin:auto;
}


/* 文章封面圖 */
.news-ct-cover{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.news-ct-cover img{
  width:100%;
  display:block;
}


/* 文章內文 */
.news-ct-article{
  max-width:820px;
  margin:40px auto 0;
  text-align:center;
  color:#4a5a5f;
  line-height:2;
  font-size:15px;
}

.news-ct-article p{
  margin-bottom:18px;
}


/* =========================================
   DECOR BUBBLES
   ========================================= */

.news-ct-bubble{
  position:absolute;
  opacity:.6;
  z-index:0;
  pointer-events:none;
}

.news-ct-bubble-left{
  left:0px;
  top:40px;
  width:220px;
}

.news-ct-bubble-right{
  right:0px;
  top:80px;
  width:220px;
}



/* =========================================
   RWD
   ========================================= */

@media (max-width:768px){

  .news-ct-banner{
    height:260px;
  }

  .news-ct-title{
    font-size:28px;
  }

  .news-ct-subpill{
    font-size:15px;
    padding:14px 20px;
  }

  .news-ct-body{
    padding-top:80px;
  }

  .news-ct-article{
    text-align:left;
    padding:0 15px;
  }

}

/* =========================================
   news_list.php 專用
========================================= */

.news-list{ background:#fff; }

/* Hero Banner（延續 news_content：滿版、無黑底） */
.news-list-banner{
  width:100%;
  height:360px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.news-list-banner-overlay{
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.40); /* 設計偏亮 */
}

.news-list-hero-text{
  position:relative;
  z-index:2;
  padding-top: 130px;
  padding-bottom: 30px;
  color:#008489;
}

.news-list-title{
  font-size: 44px;
  font-weight: 900;
  margin: 0 0 10px;
}

.news-list-sub{
  font-size: 18px;
  font-weight: 700;
  color:#555;
}

/* Body 淡藍底 + 泡泡 */
.news-list-body{
  background:#cfe5e9;
  position:relative;
  overflow:hidden;
  padding: 60px 0 80px;
}

.news-list-bubble{
  position:absolute;
  opacity:.55;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
}

.news-list-bubble-left{ left:-80px; top:60px; width:220px; height:220px; object-fit:cover; }
.news-list-bubble-right{ right:-80px; top:120px; width:220px; height:220px; object-fit:cover; }

/* 標題（參考首頁文章分享） */
.news-list-head{
  position:relative;
  z-index:2;
  text-align:left;
  margin-bottom: 24px;
}

.news-list-h2{
  font-size: 28px;
  font-weight: 900;
  color:#007b83;
  margin: 0 0 10px;
}

.news-list-line{
  width: 90px;
  height: 3px;
  background:#007b83;
  border-radius: 3px;
}

/* 卡片 */
.news-card{
  position:relative;
  z-index:2;
  display:flex;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  text-decoration:none;
  color:inherit;
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}

.news-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
}

.news-card-img{
  width: 42%;
  min-height: 170px;
  background:#eee;
}

.news-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.news-card-body{
  width:58%;
  padding: 18px 18px 16px;
}

.news-card-date{
  font-size: 13px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.news-card-title{
  font-size: 18px;
  font-weight: 900;
  color:#0b7f7b;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-card-summary{
  font-size: 14px;
  color: rgba(0,0,0,.60);
  line-height: 1.8;
  margin-bottom: 14px;

  /* 摘要最多 2 行，保持整齊 */
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.news-card-more{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight: 900;
  color:#0b7f7b;
  letter-spacing:.5px;
}

.news-card-more-icon{
  width:32px;
  height:32px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,127,123,.12);
}

/* Pagination */
.news-pagination{
  position:relative;
  z-index:2;
  margin-top: 12px;
}

.news-pagination .page-link{
  border:0;
  margin: 0 4px;
  border-radius: 12px !important;
  font-weight: 900;
  color:#0b7f7b;
}

.news-pagination .page-item.active .page-link{
  background:#0b7f7b;
  color:#fff;
}

/* RWD */
@media (max-width: 768px){
  .news-list-banner{ height: 280px; }
  .news-list-hero-text{ padding-top: 100px; }
  .news-list-title{ font-size: 32px; }

  .news-card{ flex-direction: column; }
  .news-card-img{ width:100%; height: 180px; }
  .news-card-body{ width:100%; }
}

/* =========================================
   文章分享列表 + 日期
========================================= */

.home-news-list-section{
  background: #cfe5e9;   /* 依你網站淡藍底 */
  padding: 60px 0;
}

.home-news-box{
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  background: #fff;
}

.home-news-head{
  background: #0b7f7b;
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 18px 20px;
  font-size: 18px;
}

.home-news-body{
  background: #fff;
}

.home-news-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(0,0,0,.08);
}

.home-news-item:first-child{
  border-top: 0;
}

.home-news-text{
  min-width: 0;
}

/* 日期在標題上方（你要欄位，就做成一列） */
.home-news-date{
  font-size: 12px;
  font-weight: 900;
  color: rgba(0,0,0,.55);
  margin-bottom: 6px;
}

.home-news-title{
  font-size: 14px;
  font-weight: 800;
  color: rgba(0,0,0,.78);
  line-height: 1.6;

  /* 避免太長撐破 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-go{
  flex: 0 0 auto;
}

.home-news-go-circle{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3cc4d2; /* 右側藍綠圓 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transition: transform .15s ease;
}
.home-news-go-circle,
.home-news-go-circle:hover{
    text-decoration: none;
}

.home-news-item:hover .home-news-go-circle{
  transform: translateX(2px);
}

/* RWD */
@media (max-width: 768px){
  .home-news-box{ margin: 0 12px; }
  .home-news-item{ padding: 16px 14px; }
  .home-news-title{ font-size: 14px; }
}

/* =========================================
   GLOBAL LINK RESET (避免箭頭底線)
========================================= */

a,
a:hover,
a:focus{
    text-decoration: none;
}


/* =========================================
   ARROW ICON STYLE
========================================= */

.icon-circle,
.home-news-go-circle,
.article-arrow{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* icon 裡面的箭頭 */
.icon-circle i,
.home-news-go-circle i,
.article-arrow i{
    text-decoration: none;
    line-height: 1;
}


/* =========================================
   HOVER ANIMATION (整站統一)
========================================= */

.icon-circle,
.home-news-go-circle,
.article-arrow{
    transition: transform .18s ease;
}

a:hover .icon-circle,
.home-news-item:hover .home-news-go-circle,
.article-item:hover .article-arrow{
    transform: translateX(3px);
}


/* =========================================
   BUTTON LINK RESET
========================================= */

.nav-btn,
.nav-btn:hover{
    text-decoration: none;
    color: inherit;
}


/* =========================================
   防止 span / icon 繼承底線
========================================= */

a span,
a i{
    text-decoration: none;
}

/* =========================================
   store_list.php
========================================= */

.store-list{
  background:#fff;
}

/* Hero */
.store-list-banner{
  width:100%;
  height:360px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.store-list-banner-overlay{
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.38);
}

.store-list-hero-text{
  position:relative;
  z-index:2;
  padding-top:130px;
  padding-bottom:30px;
  color:#008489;
}

.store-list-title{
  font-size:44px;
  font-weight:900;
  margin:0 0 10px;
}

.store-list-sub{
  font-size:18px;
  font-weight:700;
  color:#555;
}

/* Body */
.store-list-body{
  background:#cfe5e9;
  padding:70px 0 90px;
  position:relative;
  overflow:hidden;
}

.store-list-head{
  text-align:center;
  margin-bottom:35px;
}

.store-list-h2{
  font-size:32px;
  font-weight:900;
  color:#007b83;
  margin:0 0 10px;
}

.store-list-line{
  width:96px;
  height:4px;
  margin:0 auto;
  border-top:2px solid #007b83;
  border-bottom:2px solid #007b83;
}

/* List */
.store-list-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.store-row{
  display:flex;
  align-items:center;
  gap:26px;
  padding:28px 0;
}

.store-map{
  width:200px;
  flex:0 0 200px;
}

.store-map iframe{
  width:200px;
  height:160px;
  border:0;
  border-radius:18px;
  display:block;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.store-info{
  flex:1 1 auto;
  text-align:center;
}

.store-name{
  font-weight:800;
  font-size:22px;
  color:#111;
  margin-bottom:12px;
}

.store-meta{
  margin:0 0 8px;
  color:#333;
  font-weight:600;
  font-size:15px;
}

.store-divider{
  height:1px;
  background:rgba(0,0,0,.16);
}

/* Pagination */
.store-pagination{
  margin-top:18px;
}

.store-pagination .page-link{
  border:0;
  margin:0 4px;
  border-radius:12px !important;
  font-weight:900;
  color:#0b7f7b;
}

.store-pagination .page-item.active .page-link{
  background:#0b7f7b;
  color:#fff;
}

/* RWD */
@media (max-width: 768px){
  .store-list-banner{
    height:280px;
  }

  .store-list-hero-text{
    padding-top:100px;
  }

  .store-list-title{
    font-size:32px;
  }

  .store-row{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:18px;
  }

  .store-map{
    width:100%;
    flex:0 0 auto;
    display:flex;
    justify-content:center;
  }

  .store-map iframe{
    width:100%;
    max-width:320px;
    height:200px;
  }

  .store-name{
    font-size:20px;
  }
}

/* ================================
   store_content Hero
================================ */

.store-ct{
  background:#fff;
}

/* ---------- Hero ---------- */
.store-ct-hero{
  position: relative;
}

/* Banner：滿版圖 + 遮罩 + 置中內容 */
.store-ct-banner{
  width:100%;
  height:360px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* Banner 上遮罩 */
.store-ct-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
}

.store-ct-hero-text{
  position:absolute;
  left:0;
  right:0;
  bottom:-40px; /* 關鍵：讓底板跨出 Banner */
  text-align:center;
  z-index:5;
}

.store-ct-title{
  color:#fff;
  font-size:44px;
  font-weight:800;
  margin-bottom:16px;
}


/* 綠色底板 */
.store-ct-subpill{
  display:inline-block;
  background:#0f7f79;
  color:#fff;
  padding:16px 28px;
  font-size:18px;
  font-weight:700;
  border-radius:14px;
  line-height:1.6;
  box-shadow:0 14px 30px rgba(0,0,0,.2);
}

/* 泡泡：只在 Banner 內定位 */
.store-ct-hero-bubbles{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.store-ct-hero-bubble{
  position:absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  object-fit: cover;
  opacity: .55;
}

.store-ct-hero-bubble.left{
  left: -34px;
  top: 28px;
}

.store-ct-hero-bubble.right{
  right: -34px;
  top: 32px;
}

/* Intro：白底區塊（設計師文字在這裡） */
.store-ct-hero-intro{
  background:#fff;
  padding: 70px 0 30px;   
  text-align: center;
  position: relative;
  z-index: 1;
}

.store-ct-hero-sub{
  color:#007b83;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.store-ct-hero-desc{
  color: rgba(0,0,0,.55);
  font-size: 14px;
  line-height: 2.1;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 20px;
}

/* ---------- Body (淡藍背景) ---------- */
.store-ct-body{
  background:#cfe5e9;
  position: relative;
  overflow: hidden; /* 防止泡泡造成水平捲軸 */
  padding: 70px 0 90px;
}

/* 內容區通用寬度 */
.store-ct-wrap{
  max-width: 980px;
  margin: 0 auto;
}

/* Body 泡泡（如果要） */
.store-ct-bubble{
  position:absolute;
  opacity:.55;
  border-radius: 999px;
  pointer-events:none;
  z-index:0;
  object-fit: cover;
}

.store-ct-bubble-left{
  left: -90px;
  top: 60px;
  width: 240px;
  height: 240px;
}

.store-ct-bubble-right{
  right: -90px;
  top: 120px;
  width: 240px;
  height: 240px;
}

/* ---------- Cover 圖卡（四角圓弧） ---------- */
.store-ct-cover{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 44px;
}

.store-ct-cover-inner{
  border-radius: 22px;
  overflow: hidden;  /* ✅ 四角圓弧必生效 */
  background:#fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
  border: 10px solid rgba(58,199,210,.35);
}

.store-ct-cover-inner img{
  width: 100%;
  height: auto;
  display: block;   /* ✅ 防止底下空白 */
  border-radius: 22px; /* ✅ 雙保險 */
  object-fit: cover;
}

/* ---------- Section Title ---------- */
.store-ct-section{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 60px;
}

.store-ct-section-title h2{
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
  color:#007b83;
}

.store-ct-section-title .line{
  display:block;
  width: 80px;
  height: 3px;
  background:#007b83;
  border-radius: 4px;
}

/* ---------- Service List ---------- */
.store-ct-service-list{
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.65);
  line-height: 2;
  font-size: 14px;
}

.store-ct-service-list b{
  color:#0b7f7b;
}

/* ---------- Features ---------- */
.store-ct-feature-list{
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.70);
  line-height: 2.2;
  font-size: 15px;
  font-weight: 700;
}

.store-ct-feature-bubble{
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,188,212,.25) 0%, rgba(0,188,212,0) 70%);
  margin-left: auto;
  margin-top: 10px;
}

/* ---------- Quote ---------- */
.store-ct-quote{
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(0,0,0,.55);
  font-weight: 900;
  line-height: 2;
  margin: 10px auto 46px;
  max-width: 980px;
}

/* ---------- Info Card ---------- */
.store-ct-info{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.store-ct-info-card{
  background:#fff;
  border-radius: 16px;
  padding: 22px 22px;
  border: 2px solid #0b7f7b;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.store-ct-info-row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 10px 0;
}

.store-ct-info-row i{
  width: 22px;
  text-align:center;
  color:#0b7f7b;
  margin-top: 2px;
}

.store-ct-info-title{
  font-weight: 900;
  color:#0b7f7b;
}

.store-ct-info-label{
  font-weight: 900;
  color: rgba(0,0,0,.55);
  display:inline;
}

.store-ct-info-value{
  color: rgba(0,0,0,.70);
  display:inline;
}

.store-sec{
  width: 100%;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.store-sec-blue{ background:#cfe5e9; }
.store-sec-white{ background:#ffffff; }

/* 內層內容不要自己長出白卡 */
.store-sec .store-ct-section{
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* 編輯器內容 */
.store-service-content,
.store-feature-content{
  margin-top:18px;
  color: rgba(0,0,0,.65);
  font-size:16px;
  line-height:2;
}

.store-service-content ol,
.store-feature-content ul{
  padding-left:20px;
}

.store-service-content li,
.store-feature-content li{
  margin-bottom:8px;
}

.store-service-content strong{
  color:#0b7f7b;
}

/* ---------- RWD ---------- */
@media (max-width: 768px){
  .store-ct-banner{ height: 280px; }
  .store-ct-hero-kicker{ font-size: 22px; }
  .store-ct-pill{ font-size: 18px; padding: 14px 18px; }
  .store-ct-hero-sub{ font-size: 15px; }
  .store-ct-section-title h2{ font-size: 28px; }
  .store-ct-info-card{ padding: 18px 16px; }

  .store-ct-hero-bubble{ width: 120px; height: 120px; }
  .store-ct-hero-bubble.left{ left:-44px; top: 22px; }
  .store-ct-hero-bubble.right{ right:-44px; top: 26px; }
}

/* ===== 底部引言 ===== */
.store-quote-sec{
  padding: 70px 0 55px;
}

.store-quote{
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  color: #3a3a3a;
  letter-spacing: .5px;
}

/* ===== 門市資訊卡 ===== */
.store-info-sec{
  padding: 55px 0 90px;
}

.store-info-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #0a7b78;
  border-radius: 14px;
  padding: 22px 26px;
}

.store-info-row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: #0a7b78;
}

.store-info-row i{
  width: 20px;
  margin-top: 3px;
  flex: 0 0 20px;
  font-size: 16px;
}

.store-info-text{
  color: #0a7b78;
  font-size: 14px;
  line-height: 1.9;
}

/* ===== 泡泡（簡化版，避免造成跑版） ===== */
.store-bubble{
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%);
  border: 1px solid rgba(0,160,170,.25);
  opacity: .9;
  pointer-events: none;
}

.store-bubble-left{ left: -40px; top: 10px; }
.store-bubble-left2{ left: -30px; bottom: 30px; transform: scale(.75); opacity: .6; }
.store-bubble-right{ right: -40px; top: 30px; }

/* 防止泡泡造成橫向捲軸 */
.store-sec{ overflow: hidden; }
html, body{ overflow-x: hidden; }

/* RWD */
@media (max-width: 576px){
  .store-info-card{ padding: 18px 16px; }
  .store-quote{ font-size: 15px; }
}

.teacher-list-banner{
  width:100%;
  height:360px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.teacher-list-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.35);
}

.teacher-list-hero-text{
  position:relative;
  z-index:2;
  padding-top:130px;
  text-align:center;
}

.teacher-list-title{
  font-size:44px;
  font-weight:900;
  color:#008489;
  margin-bottom:10px;
}


.teacher-list-sub{
  font-size:18px;
  font-weight:700;
  color:#555;
}

.teacher-list-body{
  background:#cfe5e9;
  padding:70px 0 90px;
}

.teacher-card{
    display:block;
    text-decoration:none;
    color:inherit;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}


.teacher-card:hover{
  transform:translateY(-4px);
}

.teacher-card-img{
    width:100%;
    aspect-ratio:3 / 4;   
    overflow:hidden;
}

.teacher-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;    
    display:block;
}

.teacher-card-name{
    padding:14px 10px;
    text-align:center;
    font-size:18px;
    font-weight:800;
    color:#008489;
}

.teacher-ct-banner{
  width:100%;
  height:360px;
  position:relative;
  background-size:cover;
  background-position:center;
}

.teacher-ct-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.28);
}

.teacher-ct-hero-top{
  position:absolute;
  left:0;
  right:0;
  bottom:-40px; /* 關鍵：讓底板跨出 Banner */
  text-align:center;
  z-index:5;
}

.teacher-ct-hero-kicker{
  color:#fff;
  font-size:44px;
  font-weight:800;
  margin-bottom:16px;
}

.teacher-ct-pill{
  display:inline-block;
  background:#0f7f79;
  color:#fff;
  padding:16px 28px;
  font-size:18px;
  font-weight:700;
  border-radius:14px;
  line-height:1.6;
  box-shadow:0 14px 30px rgba(0,0,0,.2);
}

.teacher-ct-body{
  background:#fff;
  padding:60px 0 90px;
}

.teacher-ct-cover{
  max-width:680px;
  margin:0 auto 50px;
}

.teacher-ct-cover-inner{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(0,0,0,.14);
}

.teacher-ct-cover-inner img{
  width:70%;
  display:block;
  margin:0 auto;   /* 關鍵：水平置中 */
}

.teacher-sec{
  width:100%;
  padding:80px 0 90px;
}

.teacher-sec-blue{
  background:#cfe5e9;
}

.teacher-sec-white{
  background:#fff;
}

.teacher-ct-wrap{
  max-width:980px;
  margin:0 auto;
}

.teacher-ct-section-title h2{
  margin:0 0 10px;
  font-size:34px;
  font-weight:900;
  color:#007b83;
}

.teacher-ct-section-title .line{
  display:block;
  width:80px;
  height:3px;
  background:#007b83;
  border-radius:4px;
}

.teacher-editor-content{
  margin-top:18px;
  color:rgba(0,0,0,.65);
  font-size:14px;
  line-height:2;
}

.teacher-editor-content p{
  margin-bottom:12px;
}

.teacher-editor-content ul,
.teacher-editor-content ol{
  padding-left:20px;
}

.teacher-editor-content li{
  margin-bottom:8px;
}

.teacher-editor-content strong{
  color:#0b7f7b;
}

/* =========================
   teacher_content 版型調整
========================= */

/* 主內容上方：左圖右文 */
.teacher-profile-box{
  display:flex;
  align-items:flex-start;
  gap:40px;
  max-width:980px;
  margin:0 auto;
}

.teacher-profile-photo{
  flex:0 0 320px;
}

.teacher-profile-info{
  flex:1 1 auto;
  padding-top:20px;
}

/* 照片縮小一點、靠左 */
.teacher-ct-cover{
  max-width:none;
  margin:0;
}

.teacher-ct-cover-inner{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(0,0,0,.14);
}

.teacher-ct-cover-inner img{
  width:100%;
  display:block;
  margin:0;
  object-fit:cover;
}

/* 老師姓名區塊 */
.teacher-profile-info .teacher-ct-section-title h2{
  margin:0 0 10px;
  font-size:38px;
  font-weight:900;
  color:#007b83;
}

/* 專業領域在右側時，字稍微大一點 */
.teacher-profile-info .teacher-editor-content{
  margin-top:20px;
  font-size:15px;
  line-height:2;
}

/* 下面兩段維持一致寬度 */
.teacher-sec .teacher-ct-section{
  max-width:980px;
  margin:0 auto;
}

/* 如果想讓白底區跟藍底區更有區別 */
.teacher-sec-white{
  background:#fff;
}

.teacher-sec-blue{
  background:#cfe5e9;
}

/* 手機版改上下排列 */
@media (max-width: 768px){
  .teacher-profile-box{
    flex-direction:column;
    gap:24px;
  }

  .teacher-profile-photo{
    flex:0 0 auto;
    width:100%;
    max-width:380px;
    margin:0 auto;
  }

  .teacher-profile-info{
    padding-top:0;
  }

  .teacher-profile-info .teacher-ct-section-title h2{
    font-size:30px;
  }
}

/* =========================================
   404 Page
========================================= */

.error-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f9fa;
}

.error-banner{
  width:100%;
  padding:100px 0;
  position:relative;
}

.error-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, #e0f7f9 0%, #ffffff 80%);
}

.error-content{
  position:relative;
  z-index:2;
}

/* 404 數字 */
.error-code{
  font-size:120px;
  font-weight:900;
  color:#00a7a5;
  margin-bottom:10px;
  letter-spacing:5px;
}

/* 標題 */
.error-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:15px;
  color:#333;
}

/* 說明 */
.error-desc{
  font-size:16px;
  color:#666;
  margin-bottom:30px;
}

/* 按鈕區 */
.error-actions{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.error-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 22px;
  border-radius:30px;
  font-weight:bold;
  text-decoration:none;
  min-width:140px;
  height:45px;
}

/* 主按鈕 */
.error-btn-green{
  background: linear-gradient(to right, #69f0ae, #00c853);
  color:#fff;
}

/* 外框按鈕 */
.error-btn-outline{
  border:2px solid #00a7a5;
  color:#00a7a5;
}

/* hover */
.error-btn:hover{
  opacity:.9;
  transform:translateY(-2px);
}

/* RWD */
@media (max-width:768px){

  .error-code{
    font-size:80px;
  }

  .error-title{
    font-size:24px;
  }

  .error-desc{
    font-size:14px;
  }

}

/* =========================================
   首頁影片區塊
========================================= */

.home-video-section{
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.home-video-wrap{
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.home-video-wrap iframe{
  width: 100%;
  aspect-ratio: 9 / 16; /* Shorts 直式 */
  display: block;
}

/* RWD */
@media (max-width:768px){

  .home-video-section{
    padding: 60px 0;
  }

  .home-video-wrap{
    max-width: 320px;
  }

}