/* ===== RESET & VARS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Brand palette: ฟ้า · ชมพู · พาสเทล (ชมพู/มินท์/ลาเวนเดอร์/ครีม) — Kawaii Pastel Bubble ---- */
  --cream:    #fff8f0;
  --cream-2:  #fdeee0;
  --white:    #ffffff;

  --pink:       #ff8fc0;
  --pink-deep:  #ff5fa3;
  --mint:       #7fe8c8;
  --mint-deep:  #3ecfa0;
  --lavender:   #c3aef2;
  --lavender-deep: #9a78e6;
  --sky:        #7fd4f2;
  --sky-deep:   #37b3e0;

  /* text: dark plum ink kept high-contrast on every pastel surface so nothing sinks */
  --ink:   #402a4d;
  --text:  #402a4d;
  --muted: #78667f;
  --dim:   #a996ac;

  --border: rgba(154,120,230,0.22);
  --border-soft: rgba(154,120,230,0.12);

  --grad-pink:   linear-gradient(120deg, #ffc2de 0%, #ff8fc0 50%, #ff5fa3 100%);
  --grad-sky:    linear-gradient(120deg, #bfeeff 0%, #7fd4f2 55%, #37b3e0 100%);
  --grad-mint:   linear-gradient(120deg, #c8f7e8 0%, #7fe8c8 55%, #3ecfa0 100%);
  --grad-lav:    linear-gradient(120deg, #e3d7fb 0%, #c3aef2 55%, #9a78e6 100%);
  --grad-cta:    linear-gradient(135deg, #ff9ecf 0%, #ff6fae 55%, #e94f92 100%);

  --r:    22px;
  --r-lg: 30px;
  --r-xl: 38px;

  --shadow:      0 10px 24px rgba(154,120,230,0.18);
  --shadow-lg:   0 18px 40px rgba(154,120,230,0.22);
  --shadow-pink: 0 10px 26px rgba(255,111,174,0.3);

  --font-display: 'Mali', 'Prompt', sans-serif;
  --font-body:    'Prompt', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px; /* space for the bottom mobile bubble dock */
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

/* Page background as a fixed full-viewport layer — sizing "cover" against
   body would scale against the whole scrollable page height on long pages,
   causing a huge zoom on mobile. The provided photo is already pastel
   pink/mint/lavender, only a light cream wash is added for text contrast. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(255,248,240,0.35), rgba(255,248,240,0.72)),
    url('assets/img/Bg%20web.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body::before {
    background-image:
      linear-gradient(rgba(255,248,240,0.4), rgba(255,248,240,0.78)),
      url('assets/img/Bg%20mobile.webp');
  }
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 1.25rem; position: relative; }
@media (max-width: 768px) { .section { padding: 3.25rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.75rem 0.875rem; } }

/* ===== HEADINGS ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0; text-wrap: balance; color: var(--ink); }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-cta);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.kw { color: var(--pink-deep); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--pink-deep);
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  background: var(--white);
  box-shadow: var(--shadow);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-cta); }

.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.35; margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
@media (max-width: 479px) { .section-head { margin-bottom: 2rem; } .section-head p { font-size: 0.875rem; } }

/* ===== BUTTONS (candy pills) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-pink { background: var(--grad-cta); color: var(--white); box-shadow: var(--shadow-pink); }
.btn-pink:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-pink:active { transform: translateY(1px) rotate(0); }
.btn-outline { background: var(--white); color: var(--pink-deep); box-shadow: var(--shadow); }
.btn-outline:hover { transform: translateY(-3px) rotate(1deg); }

/* Login/Register image buttons — always shown as full, unframed images */
.hbtn, .hero-btn-img {
  cursor: pointer; object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(154,120,230,0.35));
  transition: transform 0.18s ease, filter 0.18s ease;
}
.hbtn:hover, .hero-btn-img:hover { transform: translateY(-3px) rotate(-1deg); }
.hbtn:active, .hero-btn-img:active { transform: translateY(1px) rotate(0); }
.hbtn { height: 44px; width: auto; max-width: 160px; }
.hero-btn-img { height: 64px; width: auto; max-width: 240px; }
@media (max-width: 479px) { .hero-btn-img { height: 52px; } }

/* =====================================================================
   HEADER — Bubble Float Bar: a floating, generously-rounded rectangle
   (not a pill capsule, not a flush edge-to-edge bar) with soft blurred
   pastel "bubble" blobs peeking out from behind its corners — a
   genuinely different silhouette vs. every earlier brand's header.
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 1.25rem 0;
}
.header-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0.9rem 0.6rem 1.05rem;
}
.header-inner::before, .header-inner::after {
  content: ""; position: absolute; border-radius: 50%; z-index: -1; filter: blur(2px);
}
.header-inner::before { width: 26px; height: 26px; background: var(--mint); top: -8px; left: 34px; opacity: 0.85; }
.header-inner::after { width: 18px; height: 18px; background: var(--lavender); top: -6px; right: 54px; opacity: 0.85; }
.header-row1 { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo-link { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; max-width: 210px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; margin: 0 auto; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1.05rem; border-radius: 9999px;
  font-size: 0.87rem; font-weight: 600; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--pink-deep); background: var(--cream-2); }

.ico-line {
  display: inline-flex; align-items: center; justify-content: center;
  background: #06C755; color: #fff; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.03em; border-radius: 4px; padding: 2px 4px; flex-shrink: 0; line-height: 1;
}

.header-btns { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; margin-left: auto; }

.header-row2 { display: none; }

@media (max-width: 768px) {
  .header { padding: 0.8rem 0.65rem 0; }
  .header-inner { padding: 0.5rem 0.6rem 0.5rem; border-radius: 24px; }
  .header-row1 { gap: 0.55rem; }
  .nav-menu { display: none; }
  .logo-img { height: 40px; }
  .hbtn { height: 36px; max-width: 120px; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.3rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-top: 0.4rem; margin-top: 0.4rem;
    border-top: 1px dashed var(--border);
  }
  .header-row2::-webkit-scrollbar { display: none; }
}
.mob-nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted); white-space: nowrap;
  background: var(--cream-2);
}
.mob-nav-link:active { color: var(--pink-deep); background: var(--pink); background: linear-gradient(0deg, rgba(255,143,192,0.18), rgba(255,143,192,0.18)), var(--cream-2); }

/* ===== HERO ===== */
.hero { position: relative; padding: 150px 1.25rem 3rem; overflow: visible; }
.hero-inner {
  position: relative; z-index: 1; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.92fr 1.18fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-visual { order: -1; }
}
.hero-text .eyebrow { margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(1.85rem, 5.2vw, 2.9rem); line-height: 1.32; }
@media (max-width: 479px) { .hero h1 { font-size: clamp(1.5rem, 7.5vw, 1.95rem); } }
.hero p {
  color: var(--muted); font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.9;
  max-width: 50ch; margin: 1.1rem 0 1.75rem;
}
@media (max-width: 960px) { .hero p { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-actions { justify-content: center; } }

/* hero visual: no frame/card — the image itself shown big, with floating
   pastel bubble dots and a soft drop-shadow standing in for a border */
.hero-visual { position: relative; }
.hero-frame { position: relative; }
.hero-frame img {
  width: 100%; height: auto; border-radius: var(--r-xl);
  filter: drop-shadow(0 16px 30px rgba(154,120,230,0.28));
}
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute; border-radius: 50%; z-index: -1;
}
.hero-frame::before { width: 64px; height: 64px; background: var(--grad-mint); top: -16px; right: 26px; opacity: 0.9; }
.hero-frame::after { width: 38px; height: 38px; background: var(--grad-lav); bottom: -10px; left: -16px; opacity: 0.9; }

/* ===== FEATURES ===== */
.features { padding: 3rem 1.25rem 5rem; }
@media (max-width: 768px) { .features { padding: 2rem 1rem 3rem; } }
.feat-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--r-lg); padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow); transition: transform 0.2s ease;
}
.feat-card:hover { transform: translateY(-5px) rotate(-0.6deg); }
.feat-card::before {
  content: ""; position: absolute; top: -30%; right: -20%; width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,143,192,0.16) 0%, rgba(255,143,192,0) 70%);
  pointer-events: none;
}
.feat-icon {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.6rem;
  background: var(--grad-pink); box-shadow: var(--shadow-pink);
}
.feat-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.feat-card p { font-family: var(--font-body); font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 1.5rem 1.25rem; }
.strip-frame { max-width: 1080px; margin: 0 auto; }
.strip-frame img {
  width: 100%; border-radius: var(--r-xl);
  filter: drop-shadow(0 14px 26px rgba(154,120,230,0.22));
}

/* ===== 2-COL CONTENT ===== */
.c2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.25rem; align-items: center; }
@media (max-width: 900px) { .c2 { gap: 2.25rem; } }
@media (max-width: 768px) { .c2 { grid-template-columns: 1fr; gap: 1.9rem; } .c2.flip > div:first-child { order: -1; } }
.c2 .tag { color: var(--pink-deep); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block; }
.c2 h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.35; margin-bottom: 1.1rem; }
.c2 p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
.c2-frame { position: relative; }
.c2-frame img {
  border-radius: var(--r-xl); width: 100%;
  filter: drop-shadow(0 14px 28px rgba(154,120,230,0.26));
}
.c2-frame::before {
  content: ""; position: absolute; width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-sky); top: -14px; left: 24px; opacity: 0.9; z-index: -1;
}

/* ===== INFO CARD (H3 / generic) ===== */
.info-card {
  max-width: 860px; margin: 0 auto; background: var(--white);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .info-card { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card h3 { font-size: clamp(1.15rem, 3.2vw, 1.5rem); margin-bottom: 1.1rem; line-height: 1.35; }
.info-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }
.info-card::before {
  content: ""; position: absolute; top: -40%; right: -15%; width: 55%; height: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,174,242,0.18) 0%, rgba(199,174,242,0) 70%);
  pointer-events: none;
}
.info-card-frame { margin-top: 1.5rem; }
.info-card-frame img {
  width: 100%; border-radius: var(--r-lg);
  filter: drop-shadow(0 12px 24px rgba(154,120,230,0.22));
}

/* ===== STEPS ===== */
.steps-wrap { max-width: 820px; margin: 0 auto; }
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--white); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--grad-cta);
  color: var(--white); font-weight: 700; font-size: 1.05rem; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-pink);
}
.step-body h3 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 700; }
.step-body p { color: var(--muted); font-size: 0.87rem; line-height: 1.8; }
@media (max-width: 479px) { .step-item { gap: 0.9rem; padding: 1.1rem 1.15rem; } .step-num { width: 38px; height: 38px; font-size: 0.9rem; } }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--white); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--shadow); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; margin-bottom: 0.55rem; color: var(--ink); }
.faq-q::before { content: 'Q  '; color: var(--pink-deep); }
.faq-a { color: var(--muted); font-size: 0.865rem; line-height: 1.85; }
.faq-a::before { content: 'A  '; color: var(--lavender-deep); font-weight: 700; }
@media (max-width: 479px) { .faq-item { padding: 1.05rem 1.15rem; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 1.25rem; }
.cta-panel {
  max-width: 1000px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: ""; position: absolute; top: -30%; left: -10%; width: 45%; height: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,232,200,0.2) 0%, rgba(127,232,200,0) 70%); pointer-events: none;
}
.cta-panel::after {
  content: ""; position: absolute; bottom: -35%; right: -10%; width: 45%; height: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,143,192,0.2) 0%, rgba(255,143,192,0) 70%); pointer-events: none;
}
.cta-panel h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 0.75rem; }
.cta-panel p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
@media (max-width: 768px) { .cta-panel { padding: 2.5rem 1.5rem; } }
@media (max-width: 479px) { .cta-panel { padding: 2rem 1.1rem; border-radius: var(--r-lg); } }

/* ===== FOOTER ===== */
.footer { background: var(--cream-2); color: var(--muted); padding: 3rem 1.25rem 2.25rem; text-align: center; }
.footer-logo { height: 58px; margin: 0 auto 1.25rem; }
.footer-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.85; max-width: 640px; margin: 0 auto 1.25rem; }
.footer-copy { color: var(--dim); font-size: 0.76rem; }

/* =====================================================================
   BOTTOM MOBILE NAV — Bubble Dock: separate perfectly circular "bubble"
   buttons floating with gaps between them, instead of a merged bar or
   rounded-square tiles — a distinct new shape from every earlier brand's
   dock (glass pill, flat, comic tab, claymorphism dock, soft neumorphic
   bar, bento tile/segmented bar).
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 14px; left: 12px; right: 12px; z-index: 90;
  align-items: flex-end; justify-content: space-between; gap: 0.5rem;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center;
  height: 56px; border-radius: 50%; color: var(--muted);
  font-size: 0.62rem; font-weight: 700; text-align: center; line-height: 1.15; padding: 0 0.2rem;
  background: var(--white); box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent; transition: transform 0.2s ease, color 0.2s;
}
.mnav-item:active { color: var(--pink-deep); transform: translateY(2px); }
.mnav-item.acc { color: var(--white); background: var(--grad-cta); box-shadow: var(--shadow-pink); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 74px; height: 74px; transform: translateY(-14px);
  background: var(--white);
  border-radius: 50%; box-shadow: var(--shadow-lg);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
  position: relative;
}
.mnav-center::before {
  content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--mint); top: -4px; right: 2px;
}
.mnav-center:active { transform: translateY(-14px) scale(0.94); }
.mnav-center img { height: 40px; width: auto; max-width: 56px; object-fit: contain; }
@media (max-width: 360px) {
  .mnav-item { height: 50px; font-size: 0.56rem; }
  .mnav-center { width: 64px; height: 64px; transform: translateY(-11px); }
  .mnav-center:active { transform: translateY(-11px) scale(0.94); }
  .mnav-center img { height: 34px; max-width: 48px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(255,143,192,0.06); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== SUB-PAGES ===== */
body.page-body { overflow-x: hidden; }
.page-main { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 150px 1.25rem 7rem; text-align: center; gap: 1.75rem; position: relative; }
.page-h1 { font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.35; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 360px) { .action-btns { flex-direction: column; align-items: center; } }
.page-content { max-width: 640px; margin: 0.5rem auto 0; text-align: left; color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
.page-content h2 { color: var(--text); font-size: 1.15rem; line-height: 1.4; margin: 1.5rem 0 0.6rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 150px 1.25rem 5rem; }
.article-main h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; color: var(--ink); }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.article-main h2 { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; color: var(--ink); }

.article-cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-lg); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--pink-deep); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.95; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-faq { margin-top: 2.5rem; }
