/* ============================================================
   BUYTHEME — main.css
   Palette: Navy #0F2544 | Blue #2563EB | Orange #F97316
            Bg #F8FAFC | Card #FFFFFF | Text #0F172A
   Fonts: Outfit (headings) + Inter (body)
   Prefix: bt-
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bt-navy:       #0F2544;
  --bt-navy-2:     #1a3a6e;
  --bt-blue:       #2563EB;
  --bt-blue-h:     #1d4ed8;
  --bt-orange:     #F97316;
  --bt-orange-h:   #ea6c0a;
  --bt-bg:         #F8FAFC;
  --bt-card:       #ffffff;
  --bt-text:       #0F172A;
  --bt-text-2:     #475569;
  --bt-text-3:     #94A3B8;
  --bt-border:     #E2E8F0;
  --bt-radius:     12px;
  --bt-radius-sm:  8px;
  --bt-shadow:     0 2px 12px rgba(15,37,68,.08);
  --bt-shadow-h:   0 8px 28px rgba(15,37,68,.14);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--bt-text);
  background: var(--bt-bg);
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Buttons ── */
.bt-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bt-orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 99px;
  transition: background .18s, transform .15s;
  white-space: nowrap;
}
.bt-btn-cta:hover {
  background: var(--bt-orange-h);
  color: #fff;
  transform: translateY(-1px);
}

.bt-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bt-blue);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 99px;
  transition: background .18s, transform .15s;
  white-space: nowrap;
}
.bt-btn-blue:hover {
  background: var(--bt-blue-h);
  color: #fff;
  transform: translateY(-1px);
}

.bt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--bt-text-2);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--bt-border);
  transition: border-color .18s, color .18s;
  white-space: nowrap;
}
.bt-btn-ghost:hover {
  border-color: var(--bt-blue);
  color: var(--bt-blue);
}

/* ── Section label ── */
.bt-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bt-blue);
  margin-bottom: 10px;
}
.bt-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: var(--bt-orange);
  border-radius: 2px;
}

.bt-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--bt-navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

/* ── Wrap ── */
.bt-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.bt-header-outer {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--bt-border);
  box-shadow: 0 1px 6px rgba(15,37,68,.06);
}

.bt-header {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

/* Logo */
.bt-logo a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.bt-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--bt-navy);
  letter-spacing: -0.5px;
}

.bt-logo-text .bt-logo-dot {
  color: var(--bt-orange);
}

.bt-logo-text .bt-logo-net {
  color: var(--bt-blue);
}

.bt-logo-img {
  max-height: 38px;
  width: auto;
}

/* Spacer */
.bt-header-spacer { flex: 1; }

/* Search */
.bt-search-form {
  display: flex;
  align-items: center;
  background: var(--bt-bg);
  border: 1.5px solid var(--bt-border);
  border-radius: 99px;
  padding: 7px 14px;
  gap: 8px;
  transition: border-color .2s;
}
.bt-search-form:focus-within {
  border-color: var(--bt-blue);
  background: #fff;
}

.bt-search-form input {
  border: none;
  outline: none;
  font-size: 13.5px;
  width: 170px;
  color: var(--bt-text);
  background: transparent;
  font-family: 'Inter', sans-serif;
}
.bt-search-form input::placeholder { color: var(--bt-text-3); }

.bt-search-btn {
  display: flex;
  align-items: center;
  background: var(--bt-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .18s;
}
.bt-search-btn:hover { background: var(--bt-blue-h); }
.bt-search-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

/* ─────────────────────────────────────────────
   HERO  (big card left + 2 stacked right)
───────────────────────────────────────────── */
.bt-hero {
  padding: 32px 0 0;
  background: var(--bt-bg);
}

.bt-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Big main card ── */
.bt-hero-main {
  position: relative;
  border-radius: var(--bt-radius);
  overflow: hidden;
  height: 480px;
  background: var(--bt-navy);
  box-shadow: var(--bt-shadow);
}

.bt-hero-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .5s ease, opacity .3s;
}
.bt-hero-main:hover .bt-hero-main-img {
  transform: scale(1.03);
  opacity: .72;
}

.bt-hero-main-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top,
    rgba(9,18,36,.92) 0%,
    rgba(9,18,36,.55) 55%,
    transparent 100%);
}

.bt-hero-badge {
  display: inline-block;
  background: var(--bt-orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.bt-hero-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.bt-hero-main-excerpt {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bt-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bt-navy) 0%, var(--bt-navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  opacity: .3;
}

/* ── Right stacked cards ── */
.bt-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 480px;
}

.bt-hero-side {
  position: relative;
  border-radius: var(--bt-radius);
  overflow: hidden;
  flex: 1;
  min-height: 0;
  background: var(--bt-navy);
  box-shadow: var(--bt-shadow);
}

.bt-hero-side-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .4s ease;
}
.bt-hero-side:hover .bt-hero-side-img { transform: scale(1.04); }

.bt-hero-side-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top,
    rgba(9,18,36,.90) 0%,
    rgba(9,18,36,.4) 65%,
    transparent 100%);
}

.bt-hero-side-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────
   TOP PICKS  (4-col ranked cards)
───────────────────────────────────────────── */
.bt-picks {
  padding: 52px 0;
  background: var(--bt-bg);
}

.bt-picks-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.bt-picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bt-pick-card {
  background: var(--bt-card);
  border-radius: var(--bt-radius);
  box-shadow: var(--bt-shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--bt-border);
  position: relative;
}
.bt-pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bt-shadow-h);
}

.bt-pick-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15,37,68,.82);
  color: rgba(255,255,255,.7);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 99px;
  z-index: 1;
}

.bt-pick-img-wrap {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: var(--bt-navy);
  flex-shrink: 0;
}
.bt-pick-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bt-pick-card:hover .bt-pick-img-wrap img { transform: scale(1.05); }

.bt-pick-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.bt-pick-body {
  padding: 16px;
}

.bt-pick-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--bt-blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 7px;
}

.bt-pick-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--bt-text);
  line-height: 1.45;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   EDITOR'S CHOICE (dark-navy spotlight)
───────────────────────────────────────────── */
.bt-spotlight {
  background: var(--bt-navy);
  padding: 60px 0;
}

.bt-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bt-spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bt-orange);
  margin-bottom: 16px;
}
.bt-spotlight-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: var(--bt-orange);
  border-radius: 2px;
}

.bt-spotlight-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.bt-spotlight-excerpt {
  font-size: 15px;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bt-spotlight-img-wrap {
  position: relative;
  border-radius: var(--bt-radius);
  overflow: hidden;
  height: 340px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.bt-spotlight-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.bt-spotlight:hover .bt-spotlight-img-wrap img { transform: scale(1.03); }

.bt-spotlight-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a6e 0%, #0d2040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: .4;
}

/* ─────────────────────────────────────────────
   LATEST ARTICLES  (3-column grid)
───────────────────────────────────────────── */
.bt-latest {
  padding: 52px 0 60px;
  background: #fff;
}

.bt-latest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.bt-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bt-article-card {
  background: var(--bt-card);
  border-radius: var(--bt-radius);
  border: 1px solid var(--bt-border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--bt-shadow);
}
.bt-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bt-shadow-h);
}

.bt-article-card-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bt-navy);
  flex-shrink: 0;
}
.bt-article-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bt-article-card:hover .bt-article-card-img-wrap img { transform: scale(1.05); }

.bt-article-card-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dde3ee 0%, #c8d0e0 100%);
}

.bt-article-card-body {
  padding: 18px;
}

.bt-article-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--bt-blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.bt-article-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--bt-text);
  line-height: 1.45;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.bt-footer {
  background: var(--bt-navy);
  padding: 48px 20px 28px;
}

.bt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bt-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}

.bt-footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.bt-footer-brand-name .bt-logo-dot { color: var(--bt-orange); }
.bt-footer-brand-name .bt-logo-net { color: var(--bt-blue); }

.bt-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.bt-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.bt-footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bt-footer-links-list a {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: color .18s;
}
.bt-footer-links-list a:hover { color: var(--bt-orange); }

.bt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bt-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ─────────────────────────────────────────────
   ARTICLE DETAIL PAGE
───────────────────────────────────────────── */
.bt-article-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 20px 80px;
}

/* Scroll progress bar */
.bt-progress-bar {
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  background: var(--bt-orange);
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
}

.bt-article-banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--bt-radius);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(15,37,68,.12);
}

.bt-article-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,.10);
  color: var(--bt-blue);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.bt-article-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bt-navy);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.bt-article-meta {
  font-size: 13px;
  color: var(--bt-text-3);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bt-border);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.bt-article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bt-article-excerpt {
  font-size: 18px;
  color: var(--bt-text-2);
  line-height: 1.72;
  margin-bottom: 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--bt-blue);
  background: rgba(37,99,235,.04);
  border-radius: 0 var(--bt-radius-sm) var(--bt-radius-sm) 0;
}

.bt-article-body {
  font-size: 16.5px;
  line-height: 1.88;
  color: var(--bt-text);
}

.bt-article-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--bt-navy);
  letter-spacing: -0.2px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bt-border);
}

.bt-article-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--bt-navy);
}

.bt-article-body p { margin-bottom: 22px; }

.bt-article-body ul,
.bt-article-body ol {
  margin: 0 0 22px 24px;
  list-style: revert;
}

.bt-article-body li { margin-bottom: 8px; }

.bt-article-body blockquote {
  border-left: 4px solid var(--bt-orange);
  padding: 16px 22px;
  margin: 32px 0;
  background: #fff7ed;
  border-radius: 0 var(--bt-radius-sm) var(--bt-radius-sm) 0;
  font-style: italic;
  color: var(--bt-text-2);
}

.bt-article-body img {
  border-radius: var(--bt-radius-sm);
  margin: 30px auto;
  box-shadow: var(--bt-shadow);
}

.bt-article-body a {
  color: var(--bt-blue);
  text-decoration: underline;
  text-decoration-color: rgba(37,99,235,.3);
}
.bt-article-body a:hover {
  color: var(--bt-blue-h);
  text-decoration-color: var(--bt-blue);
}

/* ─────────────────────────────────────────────
   CATEGORY PAGE
───────────────────────────────────────────── */
.bt-cat-header {
  background: linear-gradient(135deg, var(--bt-navy) 0%, var(--bt-navy-2) 100%);
  padding: 52px 20px;
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
.bt-cat-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bt-cat-header-inner {
  position: relative;
  z-index: 1;
}

.bt-cat-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.bt-cat-header p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bt-cat-header p::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--bt-orange);
  border-radius: 2px;
}
.bt-cat-header p::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--bt-orange);
  border-radius: 2px;
}

.bt-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.bt-cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--bt-text-3);
  font-size: 15px;
}

/* ─────────────────────────────────────────────
   STATIC PAGE
───────────────────────────────────────────── */
.bt-page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}

.bt-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--bt-navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.bt-page-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--bt-text);
}

.bt-page-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--bt-navy);
  margin: 32px 0 12px;
}

.bt-page-body p { margin-bottom: 20px; }

.bt-page-body a {
  color: var(--bt-blue);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────── */
.bt-empty-state {
  text-align: center;
  padding: 100px 20px;
  color: var(--bt-text-3);
}
.bt-empty-state-icon { font-size: 52px; margin-bottom: 16px; opacity: .5; }
.bt-empty-state p { font-size: 15px; }
