@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500&display=swap');

:root {
  /* unified with mm2h hero page */
  --green-deep:  #243830;
  --green-mid:   #2E4A3C;
  --green-light: #355847;
  --bg-card:     #1E3028;
  --gold:        #DDC689;
  --gold-bright: #F4E4BD;
  --gold-light:  #E8D4A6;
  --gold-dim:    #A8904A;
  --cream:       #F0E6CC;  /* high-contrast body text on green */
  --red-seal:    #B03030;
  --ink:         #141E18;
  --glass-bg:    rgba(30, 48, 40, 0.55);
  --glass-border: rgba(221, 198, 137, 0.22);

  /* TYPE SCALE */
  --t-hero:    clamp(34px, 3.8vw, 44px);
  --t-h1:      clamp(26px, 2.6vw, 32px);
  --t-h2:      22px;
  --t-h3:      18px;
  --t-body:    17px;
  --t-small:   15px;
  --t-eyebrow: 13px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--green-deep); color: var(--cream); font-family: 'Noto Serif TC', serif; line-height: 1.8; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(20,30,24,0.85);
  border-bottom: 1px solid rgba(221,198,137,0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-zh { font-size: 17px; font-weight: 600; color: var(--gold-bright); letter-spacing: 0.12em; }
.nav-logo-en { font-size: 9.5px; font-weight: 400; color: var(--gold); letter-spacing: 0.22em; font-family: 'Noto Sans TC', sans-serif; opacity: 0.7; margin-top: 2px; }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  color: var(--cream); text-decoration: none;
  font-size: 14px; letter-spacing: 0.14em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 500;
  opacity: 0.92; transition: opacity 0.2s, color 0.2s;
  padding: 8px 14px; display: flex; align-items: center; gap: 4px;
}
.nav-item > a:hover, .nav-item > a.active { opacity: 1; color: var(--gold); }
.nav-item > a .arrow { font-size: 8px; opacity: 0.5; transition: transform 0.2s; }
.nav-item:hover > a .arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: var(--ink);
  border: 1px solid rgba(221,198,137,0.22);
  min-width: 200px;
  display: none; flex-direction: column; z-index: 300;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-item:hover .nav-dropdown { display: flex; }
.nav-dropdown a {
  color: var(--cream); text-decoration: none;
  font-size: 14px; letter-spacing: 0.1em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 400;
  padding: 13px 22px; opacity: 0.88;
  border-bottom: 1px solid rgba(221,198,137,0.08);
  transition: background 0.15s, opacity 0.15s; white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: rgba(221,198,137,0.1); opacity: 1; color: var(--gold-bright); }
.nav-dropdown .sub-label {
  font-size: 11px; letter-spacing: 0.24em; color: var(--gold);
  opacity: 0.85; padding: 12px 22px 4px;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600;
  text-transform: uppercase;
}
.nav-cta {
  background: rgba(221,198,137,0.08); border: 1px solid var(--gold);
  color: var(--gold-bright); padding: 9px 22px;
  font-size: 13px; letter-spacing: 0.16em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 500;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  text-decoration: none; margin-left: 12px; border-radius: 6px;
}
.nav-cta:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  border: none; padding: 14px 34px;
  font-size: 14px; letter-spacing: 0.16em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block; border-radius: 6px;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--gold-bright);
  border: 1px solid rgba(221,198,137,0.55); padding: 13px 34px;
  font-size: 14px; letter-spacing: 0.16em;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block; border-radius: 6px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(221,198,137,0.08); }

/* ── SECTION BASE ── */
section { padding: 88px 48px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  font-size: var(--t-eyebrow); letter-spacing: 0.34em; color: var(--gold); opacity: 0.95;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600;
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::after { content: ''; display: block; height: 1px; width: 44px; background: var(--gold); opacity: 0.6; }
.section-title { font-size: var(--t-h1); font-weight: 600; color: var(--gold-bright); letter-spacing: 0.05em; line-height: 1.3; margin-bottom: 16px; }
.section-desc { font-size: var(--t-body); color: var(--cream); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.8; max-width: 760px; margin-bottom: 44px; }
.gold-line { width: 56px; height: 2px; background: var(--gold); margin: 18px 0 32px; border-radius: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 48px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(221,198,137,0.06), transparent 60%),
    linear-gradient(180deg, #1a2a23 0%, var(--green-deep) 100%);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(221,198,137,1) 100px),
    repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(221,198,137,1) 100px);
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.page-hero-eyebrow { font-size: var(--t-eyebrow); letter-spacing: 0.34em; color: var(--gold); opacity: 1; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero-eyebrow::after { content: ''; display: block; height: 1px; width: 44px; background: var(--gold); opacity: 0.6; }
.page-hero h1 { font-size: var(--t-hero); font-weight: 700; color: var(--gold-bright); letter-spacing: 0.06em; line-height: 1.2; margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: var(--cream); opacity: 0.9; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; letter-spacing: 0.04em; line-height: 1.8; max-width: 680px; }

/* ── SUB SECTION LABEL ── */
.sub-section-label {
  font-size: var(--t-eyebrow); letter-spacing: 0.34em; color: var(--gold); opacity: 0.92;
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 32px; padding-top: 60px;
  display: flex; align-items: center; gap: 14px; text-transform: uppercase;
}
.sub-section-label::before { content: ''; display: block; height: 1px; width: 28px; background: var(--gold); opacity: 0.6; }
.sub-section-label::after { content: ''; display: block; height: 1px; flex: 1; background: rgba(221,198,137,0.18); }

/* ── GRID LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── ASIDE BOX ── */
.aside-box { background: var(--green-mid); border: 1px solid rgba(221,198,137,0.22); padding: 36px; border-radius: 10px; }
.aside-title { font-size: 13px; letter-spacing: 0.24em; color: var(--gold); opacity: 1; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 22px; text-transform: uppercase; }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.aside-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--cream); opacity: 0.9; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.7; }
.aside-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0; }
.aside-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(221,198,137,0.18); font-size: 13px; color: var(--cream); opacity: 0.65; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.8; }

/* ── FEATURE LIST ── */
.feature-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(221,198,137,0.14); }
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-num { font-size: 32px; font-weight: 400; color: var(--gold); opacity: 0.4; line-height: 1; min-width: 40px; font-family: 'Noto Serif TC', serif; }
.feature-text h3 { font-size: var(--t-h3); color: var(--gold-bright); letter-spacing: 0.08em; font-weight: 600; margin-bottom: 8px; }
.feature-text p { font-size: 15px; color: var(--cream); opacity: 0.84; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.85; }

/* ── PROCESS STEPS ── */
.step { background: var(--bg-card); padding: 32px 28px; border: 1px solid rgba(221,198,137,0.12); border-radius: 10px; transition: border-color 0.2s, transform 0.2s; }
.step:hover { border-color: rgba(221,198,137,0.32); transform: translateY(-3px); }
.step-num { font-size: 44px; font-weight: 400; color: var(--gold); opacity: 0.45; line-height: 1; margin-bottom: 16px; font-family: 'Noto Serif TC', serif; letter-spacing: 0.02em; }
.step h3 { font-size: var(--t-h3); color: var(--gold-bright); letter-spacing: 0.06em; font-weight: 600; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--cream); opacity: 0.8; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.85; }

/* ── CONDITIONS ── */
.condition-card { border: 1px solid rgba(221,198,137,0.2); padding: 28px; border-radius: 10px; background: var(--bg-card); }
.condition-card h3 { font-size: 15px; color: var(--gold-bright); letter-spacing: 0.1em; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(221,198,137,0.18); }
.condition-card ul { list-style: none; }
.condition-card ul li { font-size: 14px; color: var(--cream); opacity: 0.86; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.95; padding-left: 16px; position: relative; }
.condition-card ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold); opacity: 0.7; }

/* ── PRICING ── */
.price-card { background: var(--bg-card); padding: 40px 30px; border-radius: 12px; border: 1px solid rgba(221,198,137,0.14); }
.price-card.featured { background: var(--green-mid); border-color: rgba(221,198,137,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.2); position: relative; }
.price-tag { font-size: var(--t-eyebrow); letter-spacing: 0.28em; color: var(--gold); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; }
.price-card.featured .price-tag { color: var(--red-seal); opacity: 1; }
.price-name { font-size: 22px; color: var(--gold-bright); letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.price-amount { font-size: 14px; color: var(--cream); opacity: 0.78; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; margin-bottom: 28px; line-height: 1.6; }
.price-amount strong { display: block; font-size: 30px; font-weight: 500; color: var(--gold-bright); opacity: 1; letter-spacing: 0.04em; font-family: 'Noto Serif TC', serif; margin-bottom: 6px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-features li { font-size: 14px; color: var(--cream); opacity: 0.88; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; display: flex; gap: 12px; align-items: flex-start; line-height: 1.65; }
.price-features li::before { content: '✓'; color: var(--gold); font-size: 13px; font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.price-note { font-size: 12px; color: var(--cream); opacity: 0.55; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.8; margin-top: 14px; }

/* ── FAQ ── */
.faq-tabs { display: flex; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.faq-tab { padding: 12px 24px; font-size: 14px; letter-spacing: 0.16em; font-family: 'Noto Sans TC', sans-serif; font-weight: 500; color: var(--cream); opacity: 0.75; cursor: pointer; border: 1px solid rgba(221,198,137,0.22); border-radius: 8px; transition: all 0.2s; background: transparent; }
.faq-tab:hover { opacity: 1; border-color: rgba(221,198,137,0.4); }
.faq-tab.active { background: rgba(221,198,137,0.14); color: var(--gold-bright); opacity: 1; border-color: var(--gold); }
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid rgba(221,198,137,0.14); }
.faq-item { border-bottom: 1px solid rgba(221,198,137,0.14); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 4px; cursor: pointer; font-size: 17px; color: var(--gold-bright); font-weight: 500; letter-spacing: 0.04em; gap: 24px; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); opacity: 0.8; font-size: 22px; transition: transform 0.3s; flex-shrink: 0; font-style: normal; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--cream); opacity: 0.85; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.95; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding-left: 4px; padding-right: 4px; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* ── TEAM ── */
.team-card { background: var(--bg-card); padding: 40px 32px; border-radius: 12px; border: 1px solid rgba(221,198,137,0.16); }
.team-avatar { width: 72px; height: 72px; border: 1px solid rgba(221,198,137,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 22px; color: var(--gold); font-family: 'Noto Serif TC', serif; font-weight: 600; border-radius: 50%; }
.team-role { font-size: var(--t-eyebrow); letter-spacing: 0.28em; color: var(--gold); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.team-name { font-size: 24px; color: var(--gold-bright); letter-spacing: 0.1em; font-weight: 600; margin-bottom: 4px; }
.team-name-en { font-size: 12px; letter-spacing: 0.18em; color: var(--cream); opacity: 0.55; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; margin-bottom: 18px; }
.team-bio { font-size: 14px; color: var(--cream); opacity: 0.84; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.9; }
.team-org-label { font-size: var(--t-eyebrow); letter-spacing: 0.28em; color: var(--gold); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 22px; margin-top: 56px; text-transform: uppercase; }
.partner-block { background: var(--green-mid); border: 1px solid rgba(221,198,137,0.22); padding: 40px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; margin-top: 20px; border-radius: 12px; }
.partner-logo-box { width: 110px; height: 110px; border: 1px solid rgba(221,198,137,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; border-radius: 8px; }
.partner-logo-box span { font-size: 32px; color: var(--gold); opacity: 0.7; font-family: 'Noto Serif TC', serif; }
.partner-logo-box p { font-size: 11px; color: var(--gold); opacity: 0.85; letter-spacing: 0.1em; text-align: center; line-height: 1.4; font-family: 'Noto Sans TC', sans-serif; font-weight: 500; }
.partner-info h3 { font-size: 22px; color: var(--gold-bright); letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.partner-info .partner-sub { font-size: 12px; letter-spacing: 0.22em; color: var(--gold); opacity: 0.85; font-family: 'Noto Sans TC', sans-serif; font-weight: 500; margin-bottom: 16px; text-transform: uppercase; }
.partner-info p { font-size: 15px; color: var(--cream); opacity: 0.86; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; line-height: 1.9; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item h3 { font-size: var(--t-eyebrow); letter-spacing: 0.32em; color: var(--gold); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.contact-item p, .contact-item a { font-size: 16px; color: var(--cream); font-family: 'Noto Sans TC', sans-serif; font-weight: 400; text-decoration: none; letter-spacing: 0.03em; line-height: 1.8; }
.contact-item a:hover { color: var(--gold-bright); }
/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; letter-spacing: 0.24em; color: var(--gold); opacity: 0.92; font-family: 'Noto Sans TC', sans-serif; font-weight: 600; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.04); border: 1px solid rgba(221,198,137,0.25); color: var(--cream); padding: 13px 16px; font-family: 'Noto Sans TC', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; width: 100%; border-radius: 6px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-group select option { background: var(--green-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 1px solid rgba(221,198,137,0.18); padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-left img { height: 44px; width: 44px; object-fit: contain; }
.footer-copy { font-size: 13px; color: var(--cream); opacity: 0.6; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--cream); opacity: 0.7; text-decoration: none; font-family: 'Noto Sans TC', sans-serif; font-weight: 400; letter-spacing: 0.08em; transition: opacity 0.2s, color 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--gold-bright); }

/* ── GRID BG ── */
.grid-bg { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(221,198,137,1) 100px), repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(221,198,137,1) 100px); pointer-events: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-col, .four-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partner-block { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   理海專欄 BLOG — listing + post
   ═══════════════════════════════════════════ */

/* listing grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid rgba(221,198,137,0.16);
  border-radius: 12px; overflow: hidden; text-decoration: none;
  transition: border-color 0.25s, transform 0.25s;
}
.blog-card:hover { border-color: rgba(221,198,137,0.45); transform: translateY(-4px); }
.card-cover { aspect-ratio: 16 / 9; overflow: hidden; background: var(--green-deep); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-cover-placeholder { display: flex; align-items: center; justify-content: center; }
.card-cover-placeholder span {
  font-family: 'Noto Serif TC', serif; font-size: 20px; letter-spacing: 0.3em;
  color: var(--gold); opacity: 0.5;
}
.card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-size: 12px; letter-spacing: 0.16em; color: var(--gold);
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 10px;
}
.card-title {
  font-size: 19px; color: var(--gold-bright); font-weight: 600;
  letter-spacing: 0.03em; line-height: 1.5; margin-bottom: 12px;
}
.card-excerpt {
  font-size: 14px; color: var(--cream); opacity: 0.8;
  font-family: 'Noto Sans TC', sans-serif; line-height: 1.8; margin-bottom: 18px;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-date {
  font-size: 12px; color: var(--cream); opacity: 0.5;
  font-family: 'Noto Sans TC', sans-serif; letter-spacing: 0.08em;
}
.blog-empty {
  text-align: center; padding: 80px 20px; color: var(--cream); opacity: 0.7;
  font-family: 'Noto Sans TC', sans-serif; font-size: 16px;
}

/* single post */
.blog-post { background: var(--green-deep); padding: 72px 48px 88px; }
.blog-post-inner { max-width: 760px; margin: 0 auto; }
.post-eyebrow {
  font-size: 13px; letter-spacing: 0.1em; color: var(--gold);
  font-family: 'Noto Sans TC', sans-serif; font-weight: 600; margin-bottom: 20px;
}
.post-eyebrow a { color: var(--gold); text-decoration: none; }
.post-eyebrow a:hover { color: var(--gold-bright); }
.post-cat { color: var(--gold-light) !important; text-decoration: none; }
.post-title {
  font-size: clamp(26px, 3.4vw, 38px); color: var(--gold-bright); font-weight: 700;
  letter-spacing: 0.03em; line-height: 1.35; margin-bottom: 16px;
}
.post-meta {
  font-size: 14px; color: var(--cream); opacity: 0.6;
  font-family: 'Noto Sans TC', sans-serif; letter-spacing: 0.06em;
}
.post-cover { margin: 32px 0; border-radius: 12px; overflow: hidden; }
.post-cover img { width: 100%; height: auto; display: block; }

/* post body typography */
.post-body { font-family: 'Noto Sans TC', sans-serif; color: var(--cream); }
.post-body p { font-size: 17px; line-height: 2; margin-bottom: 24px; opacity: 0.92; }
.post-body h2 {
  font-size: 24px; color: var(--gold-bright); font-weight: 600; font-family: 'Noto Serif TC', serif;
  letter-spacing: 0.04em; margin: 44px 0 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(221,198,137,0.2);
}
.post-body h3 {
  font-size: 20px; color: var(--gold-light); font-weight: 600;
  letter-spacing: 0.04em; margin: 34px 0 14px;
}
.post-body h4 { font-size: 17px; color: var(--gold-light); font-weight: 600; margin: 26px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 24px; padding-left: 26px; }
.post-body li { font-size: 17px; line-height: 1.95; margin-bottom: 10px; opacity: 0.92; }
.post-body ul li::marker { color: var(--gold); }
.post-body ol li::marker { color: var(--gold); font-weight: 600; }
.post-body a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--gold); }
.post-body strong, .post-body b { color: var(--gold-bright); font-weight: 600; }
.post-body blockquote {
  border-left: 3px solid var(--gold); padding: 8px 24px; margin: 28px 0;
  background: rgba(221,198,137,0.06); border-radius: 0 8px 8px 0;
  font-size: 17px; line-height: 1.9; color: var(--cream); opacity: 0.9;
}
.post-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 24px 0; }
.post-body figure { margin: 24px 0; }
.post-body figcaption {
  font-size: 13px; color: var(--cream); opacity: 0.55; text-align: center; margin-top: 8px;
}
.post-body hr { border: none; border-top: 1px solid rgba(221,198,137,0.2); margin: 40px 0; }
.post-body .ql-align-center { text-align: center; }
.post-body .ql-align-right { text-align: right; }
.post-body .ql-align-justify { text-align: justify; }

/* post CTA */
.post-cta {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(221,198,137,0.2);
  text-align: center;
}
.post-cta p {
  font-size: 18px; color: var(--gold-bright); font-family: 'Noto Serif TC', serif;
  margin-bottom: 24px; letter-spacing: 0.04em;
}
.post-cta .btn-primary, .post-cta .btn-outline { margin: 0 6px; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post { padding: 56px 20px 64px; }
  .post-body p, .post-body li { font-size: 16px; }
}
