:root {
  --ink: #152033;
  --muted: #64748b;
  --paper: #ffffff;
  --wash: #f7f3ea;
  --line: #ded6c9;
  --teal: #0b6575;
  --green: #0f766e;
  --blue: #2563eb;
  --gold: #b7954b;
  --rose: #e11d48;
  --shadow: 0 20px 55px rgba(19, 34, 52, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Microsoft JhengHei", "PingFang HK", "Noto Sans HK", sans-serif;
  color: var(--ink);
  background: var(--wash);
}

a { color: inherit; }

.article-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(16, 34, 51, .95) 0%, rgba(16, 34, 51, .86) 380px, transparent 381px),
    #f7f3ea;
}

.top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
}

.mark {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #f1d58a;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-actions a, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.34);
}

.home-link {
  color: white;
  background: rgba(255,255,255,.12);
}

.whatsapp-link, .cta-button {
  color: white;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .24);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 28px;
  color: white;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #dbeafe;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #f1d58a;
  text-decoration: none;
  font-weight: 900;
}

.eyebrow {
  color: #f1d58a;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 16px;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  color: #e6edf5;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(16, 34, 51, .5);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.article-panel, .side-panel, .related-panel {
  background: white;
  border: 1px solid #e0d8cb;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-panel {
  padding: clamp(22px, 4vw, 42px);
}

.article-panel h2 {
  margin: 34px 0 12px;
  color: var(--teal);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.22;
  letter-spacing: 0;
}

.article-panel h3 {
  margin: 24px 0 8px;
  color: #102233;
  font-size: 19px;
  line-height: 1.35;
}

.article-panel p,
.article-panel li {
  color: #334155;
  font-size: 16px;
  line-height: 1.82;
}

.article-panel p { margin: 0 0 16px; }
.article-panel ul, .article-panel ol { padding-left: 22px; margin: 10px 0 18px; }

.article-panel li + li { margin-top: 6px; }

.note-box {
  margin: 24px 0;
  padding: 16px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #e8bf84;
  color: #704214;
  line-height: 1.7;
}

.note-box strong { color: #5b3510; }

.side-panel {
  position: sticky;
  top: 16px;
  padding: 18px;
}

.side-panel h2 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 21px;
}

.side-panel p {
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.7;
  font-size: 14px;
}

.quick-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.quick-list span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  background: #f3f8f8;
  color: #184e56;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.quick-list i {
  color: var(--gold);
  margin-top: 2px;
}

.related-panel {
  margin-top: 16px;
  padding: 18px;
}

.related-panel h2 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 20px;
}

.related-link {
  display: block;
  text-decoration: none;
  padding: 11px 0;
  border-top: 1px solid #e7edf3;
  color: #102233;
  font-weight: 900;
  line-height: 1.45;
}

.related-link span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  margin-top: 3px;
}

.sources {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #e5ddd0;
}

.sources a {
  color: var(--teal);
  overflow-wrap: anywhere;
}

.bottom-cta {
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #102233, #0b6575);
  color: white;
}

.bottom-cta p {
  color: #e6edf5;
}

.bottom-cta .cta-button {
  width: fit-content;
}

.disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .layout { grid-template-columns: 1fr; }
  .side-panel { position: static; }
}

@media (max-width: 640px) {
  .top {
    padding: 16px 14px;
    align-items: flex-start;
    gap: 12px;
  }

  .top-actions { flex-direction: column; align-items: stretch; }
  .top-actions a { width: 100%; font-size: 13px; }
  .hero, .layout, .disclaimer { padding-left: 14px; padding-right: 14px; }
  .hero { padding-top: 20px; }
  .article-panel { padding: 20px; }
}
