/* =========================================================
   00. TOKENS
========================================================= */
:root{
  --wsttp-ink:        #3B2233;
  --wsttp-ink-soft:    #6B4C5E;
  --wsttp-paper:       #FBF6F1;
  --wsttp-paper-dim:   #F3E9E1;
  --wsttp-blush:       #F3E3E0;
  --wsttp-blush-deep:  #EBD2CE;
  --wsttp-rose:        #C97B84;
  --wsttp-rose-deep:   #A85D68;
  --wsttp-sage:        #7C9473;
  --wsttp-sage-deep:   #5F7657;
  --wsttp-gold:        #C99A4B;
  --wsttp-line:        rgba(59,34,51,0.12);

  --wsttp-font-display: 'Lora', Georgia, serif;
  --wsttp-font-body:    'Be Vietnam Pro', -apple-system, sans-serif;

  --wsttp-radius-sm: 10px;
  --wsttp-radius-md: 18px;
  --wsttp-radius-lg: 28px;

  --wsttp-shadow: 0 20px 45px -25px rgba(59,34,51,0.35);
  --wsttp-container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--wsttp-font-body);
  background:var(--wsttp-paper);
  color:var(--wsttp-ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--wsttp-font-display); margin:0; font-weight:600; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2.5px solid var(--wsttp-rose-deep); outline-offset:3px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

.wsttp-container{ max-width:var(--wsttp-container); margin:0 auto; padding:0 32px; }
.wsttp-eyebrow{
  font-family:var(--wsttp-font-body); font-size:12.5px; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--wsttp-rose-deep);
}

/* =========================================================
   01. TOP DISCLAIMER BAR
========================================================= */
.wsttp-topbar{
  background:var(--wsttp-ink); color:var(--wsttp-paper-dim);
  font-size:12.5px; text-align:center; padding:9px 20px;
  letter-spacing:0.01em;
}
.wsttp-topbar strong{ color:var(--wsttp-rose); font-weight:600; }

/* =========================================================
   02. HEADER
========================================================= */
.wsttp-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,246,241,0.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--wsttp-line);
}
.wsttp-header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 32px; max-width:var(--wsttp-container); margin:0 auto; gap:10px;
}
.wsttp-logo{ display:flex; align-items:center; gap:10px; }
.wsttp-logo-mark{ width:34px; height:34px; flex-shrink:0; }
.wsttp-logo-text{
  font-family:var(--wsttp-font-display); font-size:22px; font-weight:600;
  color:var(--wsttp-ink); letter-spacing:-0.01em;
}
.wsttp-logo-text span{ color:var(--wsttp-rose-deep); font-style:italic; }

.wsttp-nav{ display:flex; align-items:center; gap:10px; }
.wsttp-nav-link{
  font-size:13.5px; font-weight:500; color:var(--wsttp-ink-soft);
  position:relative; padding:6px 0; transition:color .2s ease;
  white-space:nowrap; background:none; border:none; font-family:inherit;
  display:inline-flex; align-items:center; gap:2px;
}
.wsttp-nav-link:hover{ color:var(--wsttp-rose-deep); }
.wsttp-nav-link::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:0px;
  background:var(--wsttp-rose); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.wsttp-nav-link:hover::after{ transform:scaleX(1); }
.wsttp-nav-chevron{ width:18px; height:18px; transition:transform .2s ease; flex-shrink:0; }

/* Level 2: dropdown */
.wsttp-nav-item{ position:relative; }
.wsttp-dropdown{
  position:absolute; top:calc(100% + 0px); left:50%; transform:translate(-50%,6px);
  min-width:248px; background:var(--wsttp-paper); border:1px solid var(--wsttp-line);
  border-radius:var(--wsttp-radius-md); box-shadow:var(--wsttp-shadow);
  padding:10px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:60;
}
.wsttp-nav-item:hover .wsttp-dropdown,
.wsttp-nav-item.wsttp-dropdown-open .wsttp-dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform:translate(-50%,0);
}
.wsttp-nav-item:hover .wsttp-nav-chevron,
.wsttp-nav-item.wsttp-dropdown-open .wsttp-nav-chevron{ transform:rotate(180deg); }
.wsttp-dropdown::before{
  content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%) rotate(45deg);
  width:12px; height:12px; background:var(--wsttp-paper);
  border-left:1px solid var(--wsttp-line); border-top:1px solid var(--wsttp-line);
}
.wsttp-dropdown a{
  display:flex; flex-direction:column; gap:2px; padding:10px 14px; border-radius:var(--wsttp-radius-sm);
  font-size:13.5px; font-weight:500; color:var(--wsttp-ink); transition:background .15s ease;
}
.wsttp-dropdown a:hover{ background:var(--wsttp-blush); color:var(--wsttp-rose-deep); }
.wsttp-dropdown a small{ font-size:11.5px; font-weight:400; color:var(--wsttp-ink-soft); }

.wsttp-header-actions{ display:flex; align-items:center; gap:14px; }
.wsttp-icon-btn{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--wsttp-line);
  background:transparent; display:flex; align-items:center; justify-content:center;
  color:var(--wsttp-ink); transition:background .2s ease, border-color .2s ease;
}
.wsttp-icon-btn:hover{ background:var(--wsttp-blush); border-color:var(--wsttp-rose); }
.wsttp-icon-btn svg{ width:18px; height:18px; }

.wsttp-menu-toggle{ display:none; }

/* Search panel — slides in from the side, same mechanism as mobile nav */
.wsttp-search-panel{
  position:fixed; top:0; right:0; height:100%; width:min(400px,88vw);
  background:var(--wsttp-paper); z-index:90; box-shadow:var(--wsttp-shadow);
  transform:translateX(100%); transition:transform .3s ease;
  padding:26px; display:flex; flex-direction:column;
}
.wsttp-search-panel.wsttp-open{ transform:translateX(0); }
.wsttp-search-panel-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.wsttp-search-panel-head span{ font-family:var(--wsttp-font-display); font-size:18px; font-weight:600; }
.wsttp-search-box{ position:relative; }
.wsttp-search-box input{
  width:100%; border:none; border-bottom:2px solid var(--wsttp-line); background:transparent;
  font-family:var(--wsttp-font-display); font-size:21px; padding:10px 4px; color:var(--wsttp-ink);
}
.wsttp-search-box input:focus{ outline:none; border-color:var(--wsttp-rose); }
.wsttp-search-hint{ font-size:12.5px; color:var(--wsttp-ink-soft); margin-top:12px; }
.wsttp-search-suggest{ margin-top:30px; }
.wsttp-search-suggest h5{
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--wsttp-ink-soft); margin-bottom:14px;
}
.wsttp-search-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.wsttp-search-tags a{
  font-size:13px; font-weight:600; padding:8px 14px; border-radius:999px;
  background:var(--wsttp-blush); color:var(--wsttp-ink); transition:background .2s ease;
}
.wsttp-search-tags a:hover{ background:var(--wsttp-blush-deep); color:var(--wsttp-rose-deep); }

/* =========================================================
   03. HERO
========================================================= */
.wsttp-hero{ padding:10px 0 40px; position:relative; overflow:hidden; }
.wsttp-hero-grid{
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
}
.wsttp-hero-copy .wsttp-eyebrow{ display:inline-block; margin-bottom:18px; }
.wsttp-hero-title{
  font-size:clamp(34px,4.4vw,54px); line-height:1.08; letter-spacing:-0.01em;
  color:var(--wsttp-ink); margin-bottom:20px;
}
.wsttp-hero-title em{ font-style:italic; color:var(--wsttp-rose-deep); }
.wsttp-hero-excerpt{
  font-size:16.5px; color:var(--wsttp-ink-soft); max-width:46ch; margin-bottom:26px;
}
.wsttp-hero-meta{
  display:flex; align-items:center; gap:16px; font-size:13.5px; color:var(--wsttp-ink-soft);
  margin-bottom:28px;
}
.wsttp-avatar{
  width:34px; height:34px; border-radius:50%;
  background:linear-gradient(135deg,var(--wsttp-sage),var(--wsttp-rose));
}
.wsttp-hero-meta .dot::before{ content:'•'; margin:0 8px; opacity:.5; }

.wsttp-source-note{
  display:inline-flex; align-items:center; gap:7px; font-size:12.5px; color:var(--wsttp-sage-deep);
  background:var(--wsttp-paper-dim); border:1px solid var(--wsttp-line); border-radius:999px;
  padding:7px 14px; margin-bottom:26px;
}
.wsttp-source-note svg{ width:13px; height:13px; flex-shrink:0; }
.wsttp-source-note a{ font-weight:600; text-decoration:underline; text-underline-offset:2px; }

.wsttp-btn{
  display:inline-flex; align-items:center; gap:9px; font-weight:600; font-size:14.5px;
  padding:14px 26px; border-radius:999px; border:1.5px solid var(--wsttp-ink);
  background:var(--wsttp-ink); color:var(--wsttp-paper); transition:transform .2s ease, background .2s ease;
}
.wsttp-btn:hover{ background:var(--wsttp-rose-deep); border-color:var(--wsttp-rose-deep); transform:translateY(-1px); }
.wsttp-btn svg{ width:15px; height:15px; transition:transform .2s ease; }
.wsttp-btn:hover svg{ transform:translateX(3px); }
.wsttp-btn-ghost{
  background:transparent; color:var(--wsttp-ink); border-color:var(--wsttp-line);
}
.wsttp-btn-ghost:hover{ background:var(--wsttp-blush); color:var(--wsttp-ink); border-color:var(--wsttp-rose); }

/* Cycle signature graphic */
.wsttp-orbit-wrap{ position:relative; display:flex; align-items:center; justify-content:center; }
.wsttp-orbit{ width:min(420px,90%); animation:wsttp-spin 90s linear infinite; }
@keyframes wsttp-spin{ to{ transform:rotate(360deg); } }
.wsttp-orbit-card{
  position:absolute; background:var(--wsttp-paper); border:1px solid var(--wsttp-line);
  border-radius:var(--wsttp-radius-sm); padding:12px 16px; box-shadow:var(--wsttp-shadow);
  font-size:12.5px; font-weight:600; max-width:150px;
}
.wsttp-orbit-card.wsttp-c1{ top:6%; left:-6%; }
.wsttp-orbit-card.wsttp-c2{ bottom:2%; right:-8%; }
.wsttp-orbit-card span{ display:block; font-family:var(--wsttp-font-body); font-weight:400; color:var(--wsttp-ink-soft); font-size:11.5px; margin-top:2px; }

/* =========================================================
   04. TOPIC EXPLORER
========================================================= */
.wsttp-section{ padding:72px 0; }
.wsttp-section-head{
  display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:38px; gap:20px; flex-wrap:wrap;
}
.wsttp-section-title{ font-size:clamp(26px,3vw,36px); }
.wsttp-section-sub{ color:var(--wsttp-ink-soft); font-size:14.5px; max-width:44ch; margin-top:8px; }

.wsttp-topics{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.wsttp-topic-card{
  background:var(--wsttp-blush); border-radius:var(--wsttp-radius-md); padding:28px;
  transition:transform .25s ease, background .25s ease; border:1px solid transparent;
}
.wsttp-topic-card:hover{ transform:translateY(-4px); background:var(--wsttp-blush-deep); }
.wsttp-topic-icon{
  width:46px; height:46px; border-radius:50%; background:var(--wsttp-paper);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.wsttp-topic-icon svg{ width:22px; height:22px; color:var(--wsttp-rose-deep); }
.wsttp-topic-card h3{ font-size:19px; margin-bottom:8px; }
.wsttp-topic-card p{ font-size:13.5px; color:var(--wsttp-ink-soft); margin:0 0 14px; }
.wsttp-topic-count{ font-size:12px; font-weight:700; letter-spacing:.04em; color:var(--wsttp-sage-deep); text-transform:uppercase; }

/* =========================================================
   05. ARTICLES
========================================================= */
.wsttp-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.wsttp-filter-btn{
  padding:9px 18px; border-radius:999px; border:1.5px solid var(--wsttp-line);
  background:transparent; font-size:13.5px; font-weight:600; color:var(--wsttp-ink-soft);
  transition:all .2s ease;
}
.wsttp-filter-btn:hover{ border-color:var(--wsttp-rose); color:var(--wsttp-ink); }
.wsttp-filter-btn.wsttp-active{
  background:var(--wsttp-ink); border-color:var(--wsttp-ink); color:var(--wsttp-paper);
}

.wsttp-articles{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.wsttp-article-card{
  display:flex; flex-direction:column; border-radius:var(--wsttp-radius-md); overflow:hidden;
  background:var(--wsttp-paper); border:1px solid var(--wsttp-line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.wsttp-article-card:hover{ transform:translateY(-5px); box-shadow:var(--wsttp-shadow); }
.wsttp-thumb{
  height:170px; position:relative; overflow:hidden;
}
.wsttp-thumb-1{ background:radial-gradient(120% 140% at 20% 20%, #E8B9C0 0%, var(--wsttp-rose) 55%, var(--wsttp-rose-deep) 100%); }
.wsttp-thumb-2{ background:radial-gradient(120% 140% at 80% 30%, #B9CBAE 0%, var(--wsttp-sage) 55%, var(--wsttp-sage-deep) 100%); }
.wsttp-thumb-3{ background:radial-gradient(120% 140% at 30% 80%, #E7CB93 0%, var(--wsttp-gold) 60%, #A97A2E 100%); }
.wsttp-thumb-4{ background:radial-gradient(120% 140% at 70% 70%, #D9BFC7 0%, var(--wsttp-ink-soft) 70%, var(--wsttp-ink) 100%); }
.wsttp-thumb-tag{
  position:absolute; top:14px; left:14px; background:rgba(251,246,241,0.92);
  padding:5px 12px; border-radius:999px; font-size:11.5px; font-weight:700;
  letter-spacing:.03em; color:var(--wsttp-ink);
}
.wsttp-article-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.wsttp-article-body h3{ font-size:18.5px; line-height:1.32; }
.wsttp-article-body p{ font-size:13.5px; color:var(--wsttp-ink-soft); margin:0; flex:1; }
.wsttp-article-meta{
  display:flex; align-items:center; gap:8px; font-size:12px; color:var(--wsttp-ink-soft); margin-top:6px;
}
.wsttp-article-meta .dot::before{ content:'•'; margin:0 6px; opacity:.5; }
.wsttp-article-source{
  display:flex; align-items:center; gap:6px; font-size:12px; color:var(--wsttp-sage-deep);
  border-top:1px dashed var(--wsttp-line); padding-top:10px; margin-top:2px;
}
.wsttp-article-source svg{ width:12px; height:12px; flex-shrink:0; }

.wsttp-loadmore{ display:flex; justify-content:center; margin-top:44px; }

/* =========================================================
   06. TRUST / EXPERTS
========================================================= */
.wsttp-trust{ background:var(--wsttp-ink); color:var(--wsttp-paper); padding:76px 0; }
.wsttp-trust .wsttp-eyebrow{ color:var(--wsttp-rose); }
.wsttp-trust .wsttp-section-title{ color:var(--wsttp-paper); }
.wsttp-trust .wsttp-section-sub{ color:rgba(251,246,241,0.65); }
.wsttp-experts{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:38px; }
.wsttp-expert-card{
  background:rgba(251,246,241,0.06); border:1px solid rgba(251,246,241,0.14);
  border-radius:var(--wsttp-radius-md); padding:26px;
}
.wsttp-expert-avatar{
  width:56px; height:56px; border-radius:50%; margin-bottom:16px;
  background:rgba(251,246,241,0.08); border:1px solid rgba(251,246,241,0.18);
  display:flex; align-items:center; justify-content:center; color:var(--wsttp-rose);
}
.wsttp-expert-avatar svg{ width:24px; height:24px; }
.wsttp-expert-card h4{ color:var(--wsttp-paper); font-size:17px; margin-bottom:4px; }
.wsttp-expert-role{ color:var(--wsttp-rose); font-size:12.5px; font-weight:600; margin-bottom:12px; }
.wsttp-expert-card p{ font-size:13.5px; color:rgba(251,246,241,0.72); margin:0; }

/* =========================================================
   07. NEWSLETTER
========================================================= */
.wsttp-newsletter{
  background:var(--wsttp-blush); border-radius:var(--wsttp-radius-lg);
  padding:56px; display:flex; align-items:center; justify-content:space-between; gap:40px;
  margin:0 32px; max-width:calc(var(--wsttp-container) - 64px); margin-left:auto; margin-right:auto;
}
.wsttp-newsletter-copy h2{ font-size:clamp(24px,3vw,32px); margin-bottom:10px; }
.wsttp-newsletter-copy p{ color:var(--wsttp-ink-soft); font-size:14.5px; max-width:42ch; margin:0; }
.wsttp-newsletter-form{ display:flex; gap:10px; flex-shrink:0; }
.wsttp-newsletter-form input{
  padding:14px 18px; border-radius:999px; border:1.5px solid var(--wsttp-line);
  font-family:inherit; font-size:14px; width:250px; background:var(--wsttp-paper);
}
.wsttp-newsletter-form input:focus{ outline:none; border-color:var(--wsttp-rose); }
.wsttp-newsletter-note{ font-size:12px; color:var(--wsttp-ink-soft); margin-top:10px; }
.wsttp-newsletter-success{
  display:none; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--wsttp-sage-deep);
  margin-top:10px;
}
.wsttp-newsletter-success.wsttp-show{ display:flex; }

/* =========================================================
   08. FOOTER
========================================================= */
.wsttp-footer{ padding:70px 0 0; }
.wsttp-footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:50px;
  border-bottom:1px solid var(--wsttp-line);
}
.wsttp-footer-brand p{ font-size:13.5px; color:var(--wsttp-ink-soft); max-width:32ch; margin:14px 0 20px; }
.wsttp-footer-social{ display:flex; gap:10px; }
.wsttp-footer-col h5{
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--wsttp-ink-soft); margin-bottom:16px;
}
.wsttp-footer-col li{ margin-bottom:10px; }
.wsttp-footer-col a{
  font-size:14px; color:var(--wsttp-ink); transition:color .2s ease;
  display:inline-flex; align-items:center; gap:8px;
}
.wsttp-footer-icon{
  width:13px; height:13px; flex-shrink:0; color:var(--wsttp-rose-deep);
  opacity:.65; transition:transform .2s ease, opacity .2s ease;
}
.wsttp-footer-col a:hover .wsttp-footer-icon{ transform:translateX(3px); opacity:1; }
.wsttp-footer-col a:hover{ color:var(--wsttp-rose-deep); }
.wsttp-footer-bottom{
  display:flex; align-items:center; justify-content:space-between; padding:26px 0; flex-wrap:wrap; gap:12px;
}
.wsttp-footer-bottom p{ font-size:12.5px; color:var(--wsttp-ink-soft); margin:0; }
.wsttp-disclaimer{
  font-size:12px; color:var(--wsttp-ink-soft); background:var(--wsttp-paper-dim);
  border-radius:var(--wsttp-radius-sm); padding:16px 20px; margin-top:36px; line-height:1.6;
}

/* =========================================================
   09. RESPONSIVE
========================================================= */
@media (max-width: 1000px){
  .wsttp-nav{ display:none; }
  .wsttp-menu-toggle{ display:flex; }
  .wsttp-topics{ grid-template-columns:repeat(2,1fr); }
  .wsttp-articles{ grid-template-columns:repeat(2,1fr); }
  .wsttp-experts{ grid-template-columns:1fr; }
  .wsttp-newsletter{ flex-direction:column; align-items:flex-start; padding:40px 28px; }
  .wsttp-newsletter-form{ width:100%; }
  .wsttp-newsletter-form input{ width:100%; }
  .wsttp-footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px){
  .wsttp-header-inner{ padding:14px 20px; }
  .wsttp-container{ padding:0 20px; }
  .wsttp-topics{ grid-template-columns:1fr; }
  .wsttp-articles{ grid-template-columns:1fr; }
  .wsttp-newsletter-form{ flex-direction:column; }
  .wsttp-footer-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   09b. HERO + ORBIT — detailed responsive cascade
========================================================= */

/* ≤1000px — stack to one column, orbit moves above the copy */
@media (max-width: 1000px){
  .wsttp-hero{ padding:8px 0 36px; }
  .wsttp-hero-grid{ grid-template-columns:1fr; gap:36px; }
  .wsttp-hero-copy{ text-align:center; display:flex; flex-direction:column; align-items:center; }
  .wsttp-hero-excerpt{ max-width:56ch; }
  .wsttp-hero-meta{ justify-content:center; flex-wrap:wrap; row-gap:8px; }
  .wsttp-orbit-wrap{ order:-1; margin-bottom:4px; }
  .wsttp-orbit{ width:min(300px,62vw); }
  .wsttp-orbit-card{ font-size:12px; padding:11px 15px; max-width:138px; }
}

/* ≤860px — tablets / small landscape: tighten type + orbit further */
@media (max-width: 860px){
  .wsttp-hero-grid{ gap:28px; }
  .wsttp-hero-title{ font-size:clamp(30px,5.6vw,42px); margin-bottom:16px; }
  .wsttp-hero-excerpt{ font-size:15.5px; margin-bottom:20px; }
  .wsttp-source-note{ font-size:12px; padding:6px 13px; margin-bottom:20px; }
  .wsttp-orbit{ width:min(260px,58vw); }
  .wsttp-orbit-card{ font-size:11.5px; padding:10px 13px; max-width:126px; }
  .wsttp-orbit-card span{ font-size:11px; }
}

/* ≤680px — large phones: single-line meta wraps, button widens */
@media (max-width: 680px){
  .wsttp-hero{ padding:4px 0 30px; }
  .wsttp-hero-grid{ gap:22px; }
  .wsttp-hero-title{ font-size:clamp(27px,7vw,36px); letter-spacing:-0.005em; }
  .wsttp-hero-excerpt{ max-width:48ch; }
  .wsttp-hero-meta{ gap:10px; font-size:13px; }
  .wsttp-hero-meta .dot::before{ margin:0 6px; }
  .wsttp-avatar{ width:28px; height:28px; }
  .wsttp-hero-copy .wsttp-btn{ width:100%; justify-content:center; }
  .wsttp-orbit{ width:min(220px,54vw); }
  .wsttp-orbit-card{ padding:9px 12px; max-width:112px; }
  .wsttp-orbit-card.wsttp-c1{ top:4%; left:-2%; }
  .wsttp-orbit-card.wsttp-c2{ bottom:0%; right:-4%; }
}

/* ≤480px — small phones: compact copy, smaller orbit, cards start thinning out */
@media (max-width: 480px){
  .wsttp-hero{ padding:2px 0 26px; }
  .wsttp-hero-grid{ gap:16px; }
  .wsttp-hero-copy .wsttp-eyebrow{ margin-bottom:12px; font-size:11.5px; }
  .wsttp-hero-title{ font-size:clamp(24px,8vw,30px); line-height:1.14; margin-bottom:12px; }
  .wsttp-hero-excerpt{ font-size:14px; line-height:1.55; margin-bottom:16px; }
  .wsttp-source-note{ font-size:11.5px; padding:6px 12px; margin-bottom:16px; white-space:normal; text-align:left; }
  .wsttp-hero-meta{ font-size:12px; margin-bottom:20px; }
  .wsttp-hero-copy .wsttp-btn{ padding:13px 22px; font-size:14px; }
  .wsttp-orbit{ width:min(190px,50vw); }
  .wsttp-orbit-card{ font-size:11px; padding:8px 11px; max-width:98px; box-shadow:0 12px 26px -18px rgba(59,34,51,0.4); }
  .wsttp-orbit-card span{ font-size:10.5px; }
}

/* ≤380px — smallest phones: floating cards retire, orbit stays as a quiet centerpiece */
@media (max-width: 380px){
  .wsttp-hero{ padding:0 0 22px; }
  .wsttp-hero-title{ font-size:clamp(22px,8.6vw,26px); }
  .wsttp-orbit{ width:min(150px,44vw); }
  .wsttp-orbit-card{ display:block; }
}

/* Mobile menu panel */
.wsttp-mobile-nav{
  position:fixed; top:0; right:0; height:100%; width:min(320px,84vw);
  background:var(--wsttp-paper); z-index:90; box-shadow:var(--wsttp-shadow);
  transform:translateX(100%); transition:transform .3s ease; padding:26px;
}
.wsttp-mobile-nav.wsttp-open{ transform:translateX(0); }
.wsttp-mobile-nav{ overflow-y:auto; }
.wsttp-mobile-close{ margin-bottom:20px; }
.wsttp-mobile-item{ border-bottom:1px solid var(--wsttp-line); }
.wsttp-mobile-item > a,
.wsttp-mobile-trigger{
  display:flex; align-items:center; justify-content:space-between; width:100%;
  padding:14px 4px; font-size:16px; background:none; border:none; font-family:inherit;
  color:var(--wsttp-ink); text-align:left;
}
.wsttp-mobile-trigger svg{ width:14px; height:14px; transition:transform .2s ease; flex-shrink:0; color:var(--wsttp-ink-soft); }
.wsttp-mobile-item.wsttp-open .wsttp-mobile-trigger svg{ transform:rotate(180deg); }
.wsttp-mobile-submenu{
  max-height:0; overflow:hidden; transition:max-height .25s ease;
}
.wsttp-mobile-item.wsttp-open .wsttp-mobile-submenu{ max-height:400px; }
.wsttp-mobile-submenu a{
  display:block; padding:11px 4px 11px 16px; font-size:14.5px; color:var(--wsttp-ink-soft);
  border-top:1px solid var(--wsttp-line);
}
.wsttp-mobile-submenu a:first-child{ border-top:none; }
.wsttp-mobile-submenu a:hover{ color:var(--wsttp-rose-deep); }
.wsttp-scrim{
  position:fixed; inset:0; background:rgba(59,34,51,0.4); z-index:85; opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.wsttp-scrim.wsttp-show{ opacity:1; pointer-events:auto; }

/* =========================================================
   10. NỘI DUNG BÀI VIẾT / TRANG PHỤ (bai-viet.php, trang.php)
========================================================= */
.wsttp-post-content{
  font-size:16px; line-height:1.8; color:var(--wsttp-ink);
}
.wsttp-post-content p{ margin:0 0 20px; }
.wsttp-post-content h2{
  font-size:22px; margin:36px 0 14px; color:var(--wsttp-ink);
}
.wsttp-post-content h3{
  font-size:18px; margin:28px 0 12px; color:var(--wsttp-ink);
}
.wsttp-post-content ul, .wsttp-post-content ol{
  margin:0 0 20px; padding-left:22px;
}
.wsttp-post-content li{ margin-bottom:8px; }
.wsttp-post-content a{
  color:var(--wsttp-rose-deep); text-decoration:underline; text-underline-offset:2px;
}
.wsttp-post-content blockquote{
  margin:24px 0; padding:16px 20px; background:var(--wsttp-blush);
  border-left:3px solid var(--wsttp-rose); border-radius:0 12px 12px 0;
  font-family:var(--wsttp-font-display); font-style:italic; color:var(--wsttp-ink-soft);
}
.wsttp-post-content img{
  width:100%; border-radius:var(--wsttp-radius-md); margin:20px 0;
}

/* =========================================================
   11. KẾT QUẢ TÌM KIẾM (search-panel.php, đổ bằng ajax_search.php)
========================================================= */
.wsttp-search-results{ margin-top:22px; display:flex; flex-direction:column; gap:4px; }
.wsttp-search-result-item{
  display:block; padding:12px 10px; border-radius:var(--wsttp-radius-sm);
  transition:background .15s ease;
}
.wsttp-search-result-item:hover{ background:var(--wsttp-blush); }
.wsttp-search-result-item .wsttp-eyebrow{ font-size:10.5px; margin-bottom:4px; display:block; }
.wsttp-search-result-item h4{
  font-family:var(--wsttp-font-body); font-size:14.5px; font-weight:600;
  color:var(--wsttp-ink); margin:0 0 3px;
}
.wsttp-search-result-item p{
  font-size:12.5px; color:var(--wsttp-ink-soft); margin:0;
}
.wsttp-search-empty, .wsttp-search-loading{
  font-size:13px; color:var(--wsttp-ink-soft); padding:16px 10px;
}

/* =========================================================
   12. LOGO ẢNH THẬT (khi đã upload trong Cài đặt), BANNER, SLIDER
========================================================= */
.wsttp-logo-img{ height:36px; width:auto; }

.wsttp-banner{
  position:relative; border-radius:var(--wsttp-radius-lg); overflow:hidden; margin:0 32px 0;
  max-width:calc(var(--wsttp-container) - 64px); margin-left:auto; margin-right:auto;
  min-height:220px; display:flex; align-items:center;
}
.wsttp-banner img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.wsttp-banner::after{ content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(59,34,51,.72), rgba(59,34,51,.15)); z-index:1; }
.wsttp-banner-copy{ position:relative; z-index:2; padding:40px; color:#fff; max-width:520px; }
.wsttp-banner-copy h2{ font-family:var(--wsttp-font-display); font-size:clamp(22px,3vw,30px); color:#fff; margin-bottom:10px; }
.wsttp-banner-copy p{ font-size:14.5px; color:rgba(255,255,255,.85); margin:0 0 18px; }

.wsttp-slider{ position:relative; border-radius:var(--wsttp-radius-lg); overflow:hidden; min-height:280px; }
.wsttp-slide{ display:none; position:relative; min-height:280px; align-items:flex-end; }
.wsttp-slide.wsttp-active{ display:flex; }
.wsttp-slide img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.wsttp-slide::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(59,34,51,.75), rgba(59,34,51,0) 60%); z-index:1; }
.wsttp-slide-copy{ position:relative; z-index:2; padding:32px; color:#fff; max-width:460px; }
.wsttp-slide-copy h3{ font-family:var(--wsttp-font-display); font-size:22px; color:#fff; margin-bottom:8px; }
.wsttp-slide-copy p{ font-size:13.5px; color:rgba(255,255,255,.85); margin:0 0 14px; }
.wsttp-slider-nav{ position:absolute; bottom:16px; right:16px; z-index:3; display:flex; gap:8px; }
.wsttp-slider-dot{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.5); cursor:pointer; border:none; padding:0; }
.wsttp-slider-dot.wsttp-active{ background:#fff; }

/* Ảnh đại diện bài viết thật (khi có featured_image), thay cho khối gradient placeholder */
.wsttp-thumb-real{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; z-index:1; }
