/* ============================================================
   J Knowledge — Static Site Design System
   ธีม: เขียวเจโนว์เลจ + ทอง | ฟอนต์: Prompt (หัวข้อ) / Sarabun (เนื้อหา)
   ============================================================ */

:root {
  --brand-950: #07352a;
  --brand-900: #0b5a41;
  --brand-800: #0e6b4d;
  --brand-700: #1a7a58;
  --brand-600: #478e6b;
  --brand-200: #cfe5da;
  --brand-100: #e3f0e9;
  --brand-50:  #f2f7f4;
  --gold:      #f7a921;
  --gold-600:  #e09310;
  --orange:    #e85d2a;
  --orange-700:#d35425;
  --red:       #d21f2c;
  --ink:       #17251f;
  --muted:     #5b6f66;
  --line:      #dfe9e4;
  --paper:     #ffffff;
  --bg:        #f4f7f5;
  --shadow-sm: 0 1px 2px rgba(11, 90, 65, .06), 0 1px 6px rgba(11, 90, 65, .07);
  --shadow-md: 0 4px 14px rgba(11, 90, 65, .10), 0 2px 4px rgba(11, 90, 65, .06);
  --shadow-lg: 0 16px 40px rgba(11, 90, 65, .16);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Sarabun', 'Prompt', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-800); text-decoration: none; }
a:hover { color: var(--brand-600); }
h1, h2, h3, h4, .font-display { font-family: 'Prompt', 'Sarabun', sans-serif; line-height: 1.35; }
:target, [id] { scroll-margin-top: 96px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 14px;
  height: 64px;
}
.site-header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.site-header__brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; }
.site-header__brand strong {
  font-family: 'Prompt', sans-serif; font-size: 17px; color: var(--brand-900);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-header__nav { margin-left: auto; display: flex; gap: 6px; }
.site-header__nav a {
  font-family: 'Prompt', sans-serif; font-size: 14.5px; font-weight: 500;
  color: var(--brand-900); padding: 8px 14px; border-radius: 99px;
  transition: background .15s ease;
}
.site-header__nav a:hover { background: var(--brand-100); }
.site-header__nav a.is-cta { background: var(--brand-900); color: #fff; }
.site-header__nav a.is-cta:hover { background: var(--brand-700); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(247, 169, 33, .25), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(255, 255, 255, .12), transparent 55%),
    linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 60%, var(--brand-600) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
}
.hero__inner { position: relative; z-index: 1; padding: 46px 0 40px; text-align: center; }
.hero__crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; font-family: 'Prompt', sans-serif;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: 5px 14px; border-radius: 99px; margin-bottom: 16px;
}
.hero__crumb a { color: #fff; opacity: .85; }
.hero__crumb a:hover { opacity: 1; color: #fff; }
.hero h1 { font-size: clamp(26px, 4.6vw, 40px); font-weight: 700; letter-spacing: .1px; }
.hero__sub {
  margin-top: 10px; font-size: clamp(15px, 2.4vw, 18px);
  color: rgba(255,255,255,.88); max-width: 720px; margin-left: auto; margin-right: auto;
}
.hero--compact .hero__inner { padding: 34px 0 30px; }

/* ---------- Sections & cards ---------- */
.main { padding: 40px 0 64px; }
.section { margin-top: 44px; }
.section:first-child { margin-top: 0; }
.section__head { text-align: center; margin-bottom: 26px; }
.section__kicker {
  display: inline-block; font-family: 'Prompt', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 6px;
}
.section__title { font-size: clamp(21px, 3.4vw, 28px); color: var(--brand-950); }
.section__desc { color: var(--muted); margin-top: 8px; max-width: 640px; margin-left: auto; margin-right: auto; }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.card--pad { padding: 26px; }

/* hero banner image card */
.banner-card {
  max-width: 860px; margin: 0 auto; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); background: #fff;
  border: 1px solid var(--line);
}
.banner-card img { width: 100%; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid--3 .tile__body { padding: 12px 14px 14px; }
  .grid--3 .tile__title { font-size: 15px; }
  .grid--3 .tile__sub { font-size: 13px; }
  .grid--3 .tile__actions .btn { font-size: 13px; padding: 8px 12px; }
}

/* ---------- Gallery card (portfolio/template) ---------- */
.tile {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile__media { position: relative; background: var(--brand-50); }
.tile__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; }
.tile__media--wide img { aspect-ratio: 4 / 3; }
.tile__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile__title { font-size: 17.5px; color: var(--brand-950); font-weight: 600; }
.tile__sub { font-size: 14.5px; color: var(--muted); }
.tile__actions { margin-top: auto; padding-top: 12px; }
a.tile { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Prompt', sans-serif; font-weight: 500; font-size: 15.5px;
  border-radius: 99px; padding: 11px 22px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .16s ease; text-align: center;
}
.btn--primary { background: var(--brand-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); color: #fff; transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: #3a2a05; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-600); color: #fff; transform: translateY(-1px); }
.btn--outline { border-color: var(--brand-600); color: var(--brand-800); background: #fff; }
.btn--outline:hover { background: var(--brand-100); color: var(--brand-900); }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05b34c; color: #fff; transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--lg { font-size: 17px; padding: 14px 26px; }

/* ---------- Link pills (linktree style) ---------- */
.pills { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto; }
.pill {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(120deg, var(--brand-900), var(--brand-700));
  color: #fff; border-radius: 99px; padding: 10px 22px 10px 10px;
  min-height: 66px; box-shadow: var(--shadow-md);
  font-family: 'Prompt', sans-serif; font-weight: 500; font-size: 17px;
  transition: transform .16s ease, box-shadow .16s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.pill:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-lg); color: #fff; }
.pill__icon {
  flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pill__icon img { width: 38px; height: 38px; object-fit: contain; }
.pill__icon i { font-size: 22px; color: var(--brand-800); }
.pill__label { flex: 1; text-align: center; padding-right: 34px; }
.pill--orange { background: linear-gradient(120deg, var(--orange), #f07a3f); }
.pill--gold { background: linear-gradient(120deg, var(--gold-600), var(--gold)); color: #2e2103; }
.pill--gold:hover { color: #2e2103; }
.pill--facebook { background: linear-gradient(120deg, #1459c9, #1877f2); }
.pill--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pill--facebook .pill__icon i { color: #1877f2; }
.pill--instagram .pill__icon i { color: #cc2366; }
.pill--orange .pill__icon i { color: var(--orange); }

/* ---------- Profile (avatar hub) ---------- */
.profile { text-align: center; padding-top: 8px; }
.profile__avatar {
  width: 132px; height: 132px; margin: -66px auto 14px; position: relative; z-index: 2;
  border-radius: 50%; overflow: hidden; border: 5px solid #fff;
  box-shadow: var(--shadow-md); background: #fff;
}
.profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile__name { font-size: 24px; color: var(--brand-950); font-weight: 700; }
.profile__title { color: var(--muted); margin-top: 4px; font-size: 15.5px; }
.socials { display: flex; justify-content: center; gap: 12px; margin: 18px 0 8px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 19px;
  background: var(--brand-100); color: var(--brand-900);
  transition: all .15s ease;
}
.socials a:hover { background: var(--brand-900); color: #fff; transform: translateY(-2px); }

/* ---------- Doc list (กฎหมาย / เอกสาร) ---------- */
.doc-list { display: flex; flex-direction: column; gap: 12px; }
.doc {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: var(--ink);
}
.doc:hover { transform: translateX(4px); border-color: var(--brand-600); box-shadow: var(--shadow-md); color: var(--ink); }
.doc__thumb {
  flex: 0 0 56px; width: 56px; height: 74px; border-radius: 8px; overflow: hidden;
  background: var(--brand-100); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.doc__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc__thumb i { color: var(--brand-600); font-size: 20px; }
.doc__text { flex: 1; font-size: 15.5px; line-height: 1.55; }
.doc__text small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.doc__go {
  flex: 0 0 auto; font-family: 'Prompt', sans-serif; font-weight: 600; font-size: 13.5px;
  color: #fff; background: var(--brand-800); border-radius: 99px; padding: 6px 14px;
  white-space: nowrap;
}
.doc:hover .doc__go { background: var(--gold-600); }
.doc__link { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; color: inherit; }
.doc__link:hover { color: inherit; }
@media (max-width: 680px) {
  div.doc { flex-wrap: wrap; }
  div.doc .doc__link { flex: 1 1 100%; }
}
.toc-return { display: inline-block; margin-top: 10px; font-size: 13.5px; font-family: 'Prompt', sans-serif; color: var(--brand-600); }
.toc-return:hover { color: var(--brand-900); }

/* ---------- Position link grid (ตำแหน่งสอบ) ---------- */
.pos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 680px) { .pos-grid { grid-template-columns: 1fr; } }
.pos {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--ink); font-size: 15.5px; font-weight: 500;
  font-family: 'Prompt', sans-serif;
  box-shadow: var(--shadow-sm);
  transition: all .15s ease;
}
.pos:hover { border-color: var(--brand-600); background: var(--brand-50); transform: translateY(-2px); color: var(--brand-900); }
.pos__num {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px;
  background: var(--brand-100); color: var(--brand-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14.5px;
}
.pos:hover .pos__num { background: var(--brand-900); color: #fff; }

/* ---------- Detail sections (รายละเอียดตำแหน่ง) ---------- */
.law-section { margin-top: 34px; }
.law-section__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; color: var(--brand-950); margin-bottom: 14px;
}
.law-section__num {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Prompt', sans-serif; font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow-sm);
}

/* index card (สารบัญ) */
.toc-card { padding: 20px 22px; margin-bottom: 8px; }
.toc-card summary {
  cursor: pointer; font-family: 'Prompt', sans-serif; font-weight: 600;
  color: var(--brand-900); font-size: 16.5px; list-style: none;
  display: flex; align-items: center; gap: 8px;
}
.toc-card summary::-webkit-details-marker { display: none; }
.toc-card summary i { transition: transform .2s ease; }
.toc-card[open] summary i { transform: rotate(180deg); }
.toc-card__grid {
  margin-top: 14px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 18px;
}
@media (max-width: 680px) { .toc-card__grid { grid-template-columns: 1fr; } }
.toc-card__grid a {
  font-size: 14.5px; padding: 5px 8px; border-radius: 8px; color: var(--ink);
  display: flex; gap: 8px; align-items: baseline;
}
.toc-card__grid a:hover { background: var(--brand-50); color: var(--brand-900); }
.toc-card__grid a b { color: var(--brand-600); font-family: 'Prompt', sans-serif; min-width: 26px; }

/* ---------- Region jump chips ---------- */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 18px 0 6px; }
.chip {
  font-family: 'Prompt', sans-serif; font-weight: 500; font-size: 15px;
  background: #fff; color: var(--brand-900); border: 1.5px solid var(--brand-200);
  border-radius: 99px; padding: 8px 20px; box-shadow: var(--shadow-sm);
  transition: all .15s ease;
}
.chip:hover { background: var(--brand-900); color: #fff; border-color: var(--brand-900); }

/* ---------- Feature rows (from_j_knowledge) ---------- */
.feature { overflow: hidden; }
.feature img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.feature__body { padding: 20px 22px 24px; text-align: center; }
.feature__body h2 { font-size: 20px; color: var(--brand-800); margin-bottom: 8px; }
.feature__body p { color: var(--muted); font-size: 15.5px; }

/* ---------- Video embed ---------- */
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); background: #000; aspect-ratio: 16 / 9;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Benefit / price card ---------- */
.benefit-card {
  max-width: 560px; margin: 0 auto; overflow: hidden; text-align: center;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #fff;
  border: 1px solid var(--line);
}
.benefit-card__head {
  background: linear-gradient(120deg, var(--gold-600), var(--gold));
  padding: 22px 24px; color: #2e2103;
}
.benefit-card__head h2 { font-size: 24px; }
.benefit-card__head p { font-family: 'Prompt', sans-serif; font-weight: 500; margin-top: 2px; }
.benefit-card__body { padding: 24px 28px 28px; }
.benefit-card__body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 22px; }
.benefit-card__body li { display: flex; gap: 10px; align-items: baseline; font-size: 16px; }
.benefit-card__body li i { color: var(--brand-600); font-size: 15px; }

/* ---------- Article (นโยบาย/ข้อตกลง) ---------- */
.article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: clamp(24px, 5vw, 48px); }
.article h2 { color: var(--brand-900); font-size: 21px; margin: 30px 0 10px; padding-top: 8px; border-top: 1px dashed var(--line); }
.article h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.article h3 { color: var(--brand-900); font-size: 19px; margin: 28px 0 8px; padding-top: 8px; border-top: 1px dashed var(--line); }
.article a { overflow-wrap: anywhere; }
.article p { margin: 10px 0; }
.article ul, .article ol { margin: 10px 0 10px 24px; }
.article li { margin: 6px 0; }
.article strong { color: var(--brand-950); }
.article blockquote {
  border-left: 4px solid var(--gold); background: var(--brand-50);
  padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 14px 0;
  color: var(--brand-900); font-weight: 500;
}

/* ---------- Prose (generic cleaned content) ---------- */
.prose p { margin: 12px 0; }
.prose blockquote {
  border-left: 4px solid var(--gold); background: #fff;
  padding: 16px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px auto; max-width: 640px; text-align: center;
  font-family: 'Prompt', sans-serif; font-size: 17px; color: var(--brand-900);
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-900), var(--brand-700));
  border-radius: var(--radius); color: #fff; text-align: center;
  padding: 34px 28px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.4px);
  background-size: 20px 20px; pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.88); margin-bottom: 18px; }

/* ---------- Home directory ---------- */
.dir-card {
  display: flex; gap: 16px; align-items: center; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); color: var(--ink);
  transition: all .16s ease;
}
.dir-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-600); color: var(--ink); }
.dir-card__thumb {
  flex: 0 0 72px; width: 72px; height: 72px; border-radius: 14px; overflow: hidden;
  background: var(--brand-100); display: flex; align-items: center; justify-content: center;
}
.dir-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.dir-card__thumb i { font-size: 24px; color: var(--brand-600); }
.dir-card__text strong { font-family: 'Prompt', sans-serif; font-size: 16px; color: var(--brand-950); display: block; }
.dir-card__text span { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-950); color: rgba(255,255,255,.82); margin-top: 40px; }
.site-footer__inner { padding: 40px 0 28px; display: grid; gap: 28px; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; text-align: center; } }
.site-footer__inner--simple { grid-template-columns: 1fr; justify-items: center; padding: 34px 0 22px; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
@media (max-width: 800px) { .site-footer__brand { justify-content: center; } }
.site-footer__brand img { width: 44px; height: 44px; border-radius: 10px; background: #fff; padding: 3px; }
.site-footer__brand strong { font-family: 'Prompt', sans-serif; font-size: 18px; color: #fff; }
.site-footer p { font-size: 14px; line-height: 1.7; }
.site-footer h4 { color: #fff; font-size: 15.5px; margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer li { margin: 6px 0; }
.site-footer a { color: rgba(255,255,255,.78); font-size: 14.5px; }
.site-footer a:hover { color: var(--gold); }
.site-footer .socials { justify-content: flex-start; margin: 14px 0 0; }
@media (max-width: 800px) { .site-footer .socials { justify-content: center; } }
.site-footer .socials a { background: rgba(255,255,255,.10); color: #fff; }
.site-footer .socials a:hover { background: var(--gold); color: var(--brand-950); }
.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.14); padding: 16px 0;
  font-size: 13px; text-align: center; color: rgba(255,255,255,.55);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-900); color: #fff; border: 0; cursor: pointer;
  box-shadow: var(--shadow-md); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-600); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 18px; } .mt-3 { margin-top: 28px; } .mt-4 { margin-top: 40px; }
.lead { font-size: 18.5px; color: var(--brand-900); font-weight: 500; font-family: 'Prompt', sans-serif; }
.note-red { color: var(--red); font-weight: 600; }
.img-narrow { max-width: 560px; margin-left: auto; margin-right: auto; }
.only-sm { display: none; }
@media (max-width: 620px) { .only-sm { display: block; } }

@media (max-width: 620px) {
  body { font-size: 16px; }
  .main { padding: 28px 0 48px; }
  .pill { font-size: 15.5px; min-height: 60px; }
  .pill__label { padding-right: 20px; }
}
