/* =============================================================
   BEDROCK SUPPORT — STYLES.CSS
   Design: Dark glassmorphism editorial aesthetic
   Fonts: Space Grotesk (headlines) · Inter (body) · Manrope (labels)
   ============================================================= */


/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Surface scale (dark) */
  --bs-surface-lowest:   #0e0e0e;
  --bs-surface-dim:      #131313;
  --bs-surface:          #131313;
  --bs-surface-low:      #1c1b1b;
  --bs-surface-mid:      #201f1f;
  --bs-surface-high:     #2a2a2a;
  --bs-surface-highest:  #353534;

  /* Primary — cyan/teal */
  --bs-primary-soft:     #c3f5ff;
  --bs-primary-vivid:    #00e5ff;
  --bs-primary-mid:      #00daf3;
  --bs-primary-deep:     #006875;

  /* Text */
  --bs-text-main:        #e5e2e1;
  --bs-text-muted:       #bac9cc;
  --bs-text-faint:       #849396;

  /* Borders */
  --bs-border-subtle:    rgba(59, 73, 76, 0.3);
  --bs-border-mid:       #3b494c;

  /* Fonts */
  --font-headline: 'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-label:    'Manrope', sans-serif;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #c3f5ff 0%, #00e5ff 100%);

  /* Nav height — used by main padding offset */
  --nav-height: 68px;
}


/* ─── GLOBAL BASE ────────────────────────────────────────────── */
html,
body {
  background-color: var(--bs-surface-dim);
  color: var(--bs-text-main);
  font-family: var(--font-body);
  min-height: 100vh;
}

/* Selection highlight */
::selection {
  background: var(--bs-primary-vivid);
  color: var(--bs-surface-dim);
}


/* ─── NAVBAR ─────────────────────────────────────────────────── */
.bs-navbar {
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bs-border-subtle);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

/* Brand */
.bs-brand {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
}

/* Nav links */
.bs-nav-link {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs-text-muted) !important;
  transition: color 0.2s ease;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.bs-nav-link:hover,
.bs-nav-link:focus {
  color: var(--bs-primary-soft) !important;
}

/* Active nav link — matches CodeIgniter nav_active() output */
.bs-nav-link.active,
.nav-link.active.bs-nav-link {
  color: var(--bs-primary-soft) !important;
  border-bottom: 2px solid var(--bs-primary-soft);
  padding-bottom: calc(0.5rem - 2px);
}

/* Navbar toggler icon for dark bg */
.bs-navbar-toggler {
  width: 46px;
  height: 46px;
  border-radius: 0.6em;
  background: linear-gradient(135deg, rgba(195, 245, 255, 0.16), rgba(0, 229, 255, 0.18));
  border: 1px solid rgba(0, 229, 255, 0.28) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.bs-navbar-toggler:hover,
.bs-navbar-toggler:focus {
  background: linear-gradient(135deg, rgba(195, 245, 255, 0.22), rgba(0, 229, 255, 0.24));
  border-color: rgba(0, 229, 255, 0.42) !important;
}

.bs-navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(0, 229, 255, 0.16);
}

.bs-navbar-toggler-icon {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.bs-navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--bs-primary-soft);
}


/* ─── DROPDOWNS ──────────────────────────────────────────────── */
.bs-dropdown {
  background-color: var(--bs-surface-high);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
  min-width: 13rem;
}

.bs-dropdown-item {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bs-text-muted);
  padding: 0.45rem 1.1rem;
  transition: background 0.15s, color 0.15s;
}

.bs-dropdown-item:hover,
.bs-dropdown-item:focus {
  background-color: var(--bs-surface-highest);
  color: var(--bs-primary-soft);
}

.bs-dropdown-header {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
  padding: 0.45rem 1.1rem 0.25rem;
}

.bs-divider {
  border-color: var(--bs-border-subtle);
  margin: 0.35rem 0;
}


/* ─── VOLUNTEER STATUS WIDGETS ───────────────────────────────── */
.bs-status-btn {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-color: var(--bs-border-mid);
  color: var(--bs-text-muted);
}

.btn-check:checked + .bs-status-btn {
  background-color: var(--bs-primary-deep);
  border-color: var(--bs-primary-mid);
  color: var(--bs-text-main);
}

.bs-label-xs {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
}

.bs-form-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: var(--bs-text-muted);
}

.bs-team-name {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--bs-text-muted);
}

/* Form switch accent */
.form-check-input:checked {
  background-color: var(--bs-primary-deep);
  border-color: var(--bs-primary-mid);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(0, 218, 243, 0.35);
}


/* ─── MAIN CONTENT AREA ──────────────────────────────────────── */
.bs-main {
  /* Push content below the fixed navbar */
  padding-top: calc(var(--nav-height) + 2rem) !important;
  min-height: calc(100vh - var(--nav-height));
}


/* ─── FOOTER ─────────────────────────────────────────────────── */
.bs-footer {
  background-color: var(--bs-surface-lowest);
  border-top: 1px solid var(--bs-border-subtle);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
}

.bs-footer-brand {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bs-footer-link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.bs-footer-link:hover {
  color: var(--bs-primary-soft);
}

.bs-footer-copy {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
}


/* ─── UTILITY CLASSES ────────────────────────────────────────── */

/* Gradient text (headlines, callouts) */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA gradient button / block */
.cta-gradient {
  background: var(--grad-primary);
  color: var(--bs-surface-dim);
  border: none;
}

.cta-gradient:hover {
  opacity: 0.9;
}

/* Card surface */
.bs-card {
  background-color: var(--bs-surface-mid);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.5rem;
}

/* Glass card */
.bs-card-glass {
  background: rgba(32, 31, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.5rem;
}

/* Tag / badge pill */
.bs-tag {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: var(--bs-surface-mid);
  color: var(--bs-primary-mid);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.2rem;
  padding: 0.2rem 0.6rem;
}


/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.font-headline { font-family: var(--font-headline); }
.font-body     { font-family: var(--font-body);     }
.font-label    { font-family: var(--font-label);    }


/* ─── PRESERVED ORIGINAL RULES ───────────────────────────────── */

.inner-shadow {
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.2);
}

blockquote {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 4px solid var(--bs-primary-mid);
  color: var(--bs-text-muted);
  font-family: var(--font-headline);
  font-style: italic;
}

.ticket-activity {
  padding-left: 1em;
  border-left: solid 5px var(--bs-border-mid);
}

#ai-insights-body {
  max-height: 25em;
}

/* Info popover icon */
.info-popover {
  display: inline-flex;
  vertical-align: middle;
  cursor: help;
  line-height: 1;
}

.info-popover-icon {
  width: 1em;
  height: 1em;
  color: var(--bs-primary-mid);
}

.info-popover:focus .info-popover-icon,
.info-popover:hover .info-popover-icon {
  color: var(--bs-primary-soft);
}

/* Popover sizing */
.popover {
  max-width: 360px;
  background-color: var(--bs-surface-high);
  border: 1px solid var(--bs-border-subtle);
}

.popover .popover-body {
  max-height: 240px;
  overflow: auto;
  color: var(--bs-text-muted);
}

/* KB Article styles */
.kb-body img {
  width: 100%;
  height: auto;
}

/* Material Symbols baseline */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}


  .blog-article-shell {
    max-width: 885px;
    /* max-width: 1140px; */
    margin: 0 auto;
  }

  .blog-article-hero {
    max-width: 900px;
    margin-bottom: 3rem;
  }

  .blog-article-breadcrumb {
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bs-text-faint);
  }

  .blog-article-breadcrumb a {
    color: inherit;
    text-decoration: none;
  }

  .blog-article-breadcrumb a:hover {
    color: var(--bs-primary-soft);
  }

  .blog-article-meta {
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bs-text-faint);
  }

  .blog-article-author-card {
    min-height: 52px;
  }

  .blog-article-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--bs-surface-high);
    border: 1px solid var(--bs-border-subtle);
    flex: 0 0 48px;
  }

  .blog-article-body {
    max-width: 885px;
    /* max-width: 760px; */
  }

  .blog-article-body,
  .blog-article-body p,
  .blog-article-body li {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--bs-text-muted);
  }

  .blog-article-body > :first-child {
    margin-top: 0;
  }

  .blog-article-body h1,
  .blog-article-body h2,
  .blog-article-body h3,
  .blog-article-body h4,
  .blog-article-body h5,
  .blog-article-body h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bs-text-main);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .blog-article-body h1 { font-size: clamp(2rem, 4vw, 3rem); }
  .blog-article-body h2 { font-size: 1.7rem; }
  .blog-article-body h3 { font-size: 1.35rem; }
  .blog-article-body h4 { font-size: 1.15rem; }

  .blog-article-body a {
    color: var(--bs-primary-soft);
    text-decoration-color: rgba(195, 245, 255, 0.45);
    text-underline-offset: 0.18em;
  }

  .blog-article-body a:hover {
    color: var(--bs-primary-vivid);
    text-decoration-color: rgba(0, 229, 255, 0.75);
  }

  .blog-article-body ul,
  .blog-article-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .blog-article-body li + li {
    margin-top: .5rem;
  }

  .blog-article-body hr {
    border: 0;
    border-top: 1px solid var(--bs-border-subtle);
    margin: 2.5rem 0;
    opacity: 1;
  }

  .blog-article-body pre,
  .blog-article-body code {
    font-size: .94rem;
  }

  .blog-article-body pre {
    background: var(--bs-surface-low);
    color: var(--bs-text-main);
    border: 1px solid var(--bs-border-subtle);
    border-radius: .5rem;
    padding: 1rem 1.1rem;
    overflow-x: auto;
    margin: 1.75rem 0;
  }

  .blog-article-body :not(pre) > code {
    background: var(--bs-surface-mid);
    border: 1px solid var(--bs-border-subtle);
    border-radius: .35rem;
    padding: .12rem .42rem;
    color: var(--bs-primary-soft);
  }

  .blog-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    background: var(--bs-surface-mid);
    border: 1px solid var(--bs-border-subtle);
    border-radius: .5rem;
    overflow: hidden;
  }

  .blog-article-body th,
  .blog-article-body td {
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--bs-border-subtle);
    text-align: left;
  }

  .blog-article-body th {
    font-family: var(--font-label);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--bs-text-faint);
    background: rgba(255,255,255,.02);
  }

  .blog-article-body tr:last-child td {
    border-bottom: 0;
  }

  .blog-article-body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: .5rem;
    margin: 2rem 0;
    border: 1px solid var(--bs-border-subtle);
  }

  .blog-article-divider {
    border-top: 1px solid var(--bs-border-subtle);
  }

  .blog-category-shell {
    max-width: 1140px;
    margin: 0 auto;
  }

  .blog-category-hero {
    /* max-width: 900px; */
    margin-bottom: 3.5rem;
  }

  .blog-category-breadcrumb {
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bs-text-faint);
  }

  .blog-category-breadcrumb a {
    color: inherit;
    text-decoration: none;
  }

  .blog-category-breadcrumb a:hover {
    color: var(--bs-primary-soft);
  }

  .blog-category-description {
    /* max-width: 760px; */
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--bs-text-muted);
  }

  .blog-category-meta {
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bs-text-faint);
  }

  .blog-category-listing-card {
    display: block;
    height: 100%;
    background: linear-gradient(180deg, rgba(42,42,42,.58) 0%, rgba(28,27,27,.92) 100%);
    border: 1px solid var(--bs-border-subtle);
    border-radius: .75rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .blog-category-listing-card:hover {
    transform: translateY(-2px);
    border-color: rgba(195,245,255,.22);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    background: linear-gradient(180deg, rgba(53,53,52,.72) 0%, rgba(32,31,31,.96) 100%);
  }

  .blog-category-listing-card:hover .blog-category-card-title {
    color: var(--bs-primary-soft) !important;
  }

  .blog-category-card-title {
    transition: color .2s ease;
  }

  .blog-category-card-excerpt {
    font-size: .96rem;
    line-height: 1.8;
    color: var(--bs-text-muted);
  }

  .blog-category-card-footer {
    border-top: 1px solid var(--bs-border-subtle);
    padding-top: 1rem;
  }


  /* =============================================================
   ARTICLES INDEX
   ============================================================= */

.articles-hero {
  max-width: 980px;
  padding-top: 1rem;
}

.articles-hero-copy {
  max-width: 760px;
}

.articles-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary-mid);
}

.articles-hero-title {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--bs-text-main);
}

.articles-hero-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--bs-text-muted);
}

/* .articles-search-wrap {
  max-width: 760px;
} */

.articles-search-shell {
  background: rgba(32, 31, 31, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.85rem;
  padding: 0.65rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.articles-search-input.form-control {
  min-height: 52px;
  background: transparent;
  border: 1px solid var(--bs-border-subtle);
  color: var(--bs-text-main);
  border-radius: 0.65rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: none;
}

.articles-search-input.form-control::placeholder {
  color: var(--bs-text-faint);
}

.articles-search-input.form-control:focus {
  background: transparent;
  color: var(--bs-text-main);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(0, 229, 255, 0.12);
}

.articles-search-btn {
  min-width: 140px;
  min-height: 52px;
  border: 0;
  border-radius: 0.65rem;
  background: var(--grad-primary);
  color: var(--bs-surface-dim);
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.articles-search-btn:hover,
.articles-search-btn:focus {
  opacity: 0.92;
  color: var(--bs-surface-dim);
}

.articles-search-note {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
}

.articles-section-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary-mid);
}

.articles-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bs-text-main);
}

.article-list-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.article-list-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.article-meta-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-text-faint);
}

.article-internal-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 193, 7, 0.22);
  background: rgba(255, 193, 7, 0.08);
  color: #ffd76a;
  border-radius: 0.3rem;
  padding: 0.22rem 0.55rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-list-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.article-list-title-link {
  color: var(--bs-text-main);
  transition: color 0.18s ease;
}

.article-list-title-link:hover {
  color: var(--bs-primary-soft);
}

.article-list-excerpt {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--bs-text-muted);
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-primary-mid);
}

.article-read-link:hover {
  color: var(--bs-primary-soft);
}

.article-empty-state {
  background: rgba(32, 31, 31, 0.78);
}

.article-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0;
}

.article-pagination .page-item {
  list-style: none;
}

.article-pagination .page-link {
  background: var(--bs-surface-mid);
  color: var(--bs-text-muted);
  border: 1px solid var(--bs-border-subtle);
  border-radius: 0.55rem;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.article-pagination .page-link:hover,
.article-pagination .page-link:focus {
  background: var(--bs-surface-high);
  color: var(--bs-primary-soft);
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 0 0 0.16rem rgba(0, 229, 255, 0.1);
}

.article-pagination .page-item.active .page-link {
  background: var(--grad-primary);
  border-color: transparent;
  color: var(--bs-surface-dim);
}

.article-pagination .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

.article-category-card {
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.article-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.22);
  background-color: var(--bs-surface-high);
}

.article-category-title {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bs-text-main);
}

.article-category-description {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--bs-text-muted);
}

.article-category-description-empty {
  color: var(--bs-text-faint);
}

@media (max-width: 767.98px) {
  .articles-hero {
    padding-top: 0.25rem;
  }

  .articles-search-btn {
    width: 100%;
  }

  .article-list-card {
    padding: 1.5rem !important;
  }
}



  .author-profile-shell {
    max-width: 1080px;
    margin: 0 auto;
  }

  .author-profile-hero {
    max-width: 920px;
    margin-bottom: 3rem;
  }

  .author-profile-eyebrow {
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bs-primary-mid);
  }

  .author-profile-title {
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--bs-text-main);
  }

  .author-profile-subtitle {
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--bs-text-muted);
  }

  .author-profile-card {
    background: rgba(32, 31, 31, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .author-profile-avatar-wrap {
    width: 132px;
    height: 132px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--bs-border-subtle);
    background: var(--bs-surface-high);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    flex: 0 0 132px;
  }

  .author-profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .author-profile-kicker {
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bs-text-faint);
  }

  .author-profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .author-profile-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    text-decoration: none;
  }

  .author-profile-link .material-symbols-outlined {
    font-size: 1rem;
    color: var(--bs-primary-mid);
  }

  .author-profile-link-label {
    font-family: var(--font-label);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bs-text-muted);
    transition: color .18s ease;
  }

  .author-profile-link:hover .author-profile-link-label {
    color: var(--bs-primary-soft);
  }

  /* .author-bio-section {
    max-width: 820px;
  } */

  .author-bio-label {
    font-family: var(--font-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bs-primary-mid);
  }

  .author-bio-body,
  .author-bio-body p,
  .author-bio-body li {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--bs-text-muted);
  }

  .author-bio-body > :first-child {
    margin-top: 0;
  }

  .author-bio-body > :last-child {
    margin-bottom: 0;
  }

  .author-bio-body h1,
  .author-bio-body h2,
  .author-bio-body h3,
  .author-bio-body h4,
  .author-bio-body h5,
  .author-bio-body h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bs-text-main);
    margin-top: 2rem;
    margin-bottom: .9rem;
    line-height: 1.2;
  }

  .author-bio-body h2 { font-size: 1.65rem; }
  .author-bio-body h3 { font-size: 1.35rem; }
  .author-bio-body h4 { font-size: 1.15rem; }

  .author-bio-body a {
    color: var(--bs-primary-soft);
    text-decoration-color: rgba(195, 245, 255, 0.45);
    text-underline-offset: .16em;
  }

  .author-bio-body a:hover {
    color: var(--bs-primary-vivid);
    text-decoration-color: rgba(0, 229, 255, 0.75);
  }

  .author-bio-body ul,
  .author-bio-body ol {
    padding-left: 1.35rem;
    margin-bottom: 1.4rem;
  }

  .author-bio-body li + li {
    margin-top: .45rem;
  }
/* 
  .author-empty-state {
    max-width: 885px;
  } */

  .author-divider {
    border-top: 1px solid var(--bs-border-subtle);
  }


  /* ─── SEO CONSENT BANNER ───────────────────────────────────── */
.bs-consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1085;
}

.bs-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(225, 228, 230, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.bs-consent-copy {
  max-width: 720px;
}

.bs-consent-eyebrow {
  margin: 0 0 .2rem;
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0f6b78;
}

.bs-consent-title {
  margin: 0 0 .35rem;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.bs-consent-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
  color: #3d4a4d;
}

.bs-consent-text a {
  color: #0f6b78;
}

.bs-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

@media (max-width: 767.98px) {
  .bs-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs-consent-actions {
    width: 100%;
  }
}