/* ==========================================================================
   0. Self-hosted web fonts
   ========================================================================== */

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/vendor/fonts/ibm-plex-sans-var.woff2') format('woff2-variations');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('/assets/vendor/fonts/ibm-plex-sans-italic-var.woff2') format('woff2-variations');
    font-weight: 100 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Serif 4';
    src: url('/assets/vendor/fonts/source-serif-4.woff2') format('woff2-variations');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
    /* Primary palette */
    --bod-navy:                 #1e3a5f;
    --bod-navy-dark:            #122642;
    --bod-navy-light:           #2f5483;
    --bod-gold:                 #c8932b;
    --bod-gold-light:           #d6a948;

    /* Backgrounds */
    --bod-bg:                   #faf8f3;
    --bod-surface:              #ffffff;
    --bod-hero-bg:              #f2efe7;
    --bod-tint-bg:              #f7f3e9;
    --bod-gold-tint:            #faf1de;
    --bod-info-bg:              #e3edf9;
    --bod-warning-bg:           #fbeec2;
    --bod-warning:              #b8860b;

    /* Text */
    --bod-text:                 #2a2a2a;
    --bod-text-muted:           #6b7280;
    --bod-text-on-dark:         rgba(255, 255, 255, 0.75);
    --bod-text-on-dark-strong:  #ffffff;

    /* Borders */
    --bod-border:               #e4dccb;
    --bod-border-dark:          rgba(255, 255, 255, 0.1);

    /* Spacing */
    --space-xs:                 0.25rem;
    --space-sm:                 0.5rem;
    --space-md:                 1rem;
    --space-lg:                 1.75rem;
    --space-xl:                 3rem;

    /* Typography */
    --font-heading:             'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-body:                'IBM Plex Sans', system-ui, -apple-system, sans-serif;

    /* Radius */
    --bod-radius:               6px;
    --bod-radius-sm:            6px;
    --bod-radius-xs:            4px;
    --bod-radius-pill:          999px;

    /* Layout */
    --bod-content-max:          820px;

    /* Sticky navbar height — used by subnav top and scroll-margin-top calculations.
       Mobile/tablet (< 992px): hamburger shown, height ~59px.
       Desktop (≥ 992px): nav links shown, height ~61px.
       If you change navbar padding or font, re-measure and update both values. */
    --bod-navbar-height:        59px;
}

@media (min-width: 992px) {
    :root { --bod-navbar-height: 61px; }
}

/* ==========================================================================
   2. Base resets / font setup
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--bod-text);
    background-color: var(--bod-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bod-navy);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(1.6rem, 4vw, 2.15rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.2rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

small, .small {
    font-size: 14px;
}

/* ==========================================================================
   3. Link styling
   ========================================================================== */

a {
    color: var(--bod-navy);
    text-decoration: none;
}

a:hover {
    color: var(--bod-navy-dark);
    text-decoration: underline;
}

/* ==========================================================================
   4. Disclaimer banner
   ========================================================================== */

.bod-disclaimer-banner {
    background: var(--bod-navy-dark);
    color: var(--bod-text-on-dark);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
    padding: 0.5rem 1rem;
}

.bod-disclaimer-banner a {
    color: var(--bod-text-on-dark);
    text-decoration: underline;
}

.bod-disclaimer-banner a:hover {
    color: var(--bod-text-on-dark-strong);
}

/* ==========================================================================
   5. Header / navbar
   ========================================================================== */

.bod-header {
    background: var(--bod-navy);
    border-bottom: 3px solid var(--bod-gold);
    padding: 0.65rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.bod-header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.bod-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bod-logo:hover {
    color: white;
    text-decoration: none;
}

.bod-brand-accent {
    color: var(--bod-gold-light);
}

.bod-wordmark {
    display: inline;
    line-height: inherit;
}

.bod-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bod-logo-icon svg {
    color: white;
    fill: white;
}

.bod-nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem !important;
    border-radius: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, background-color 0.15s ease;
    text-decoration: none;
}

.bod-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.bod-nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    border-bottom-color: var(--bod-gold-light);
}

/* Dropdown nav */
.bod-dropdown-toggle {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.bod-nav-link.bod-dropdown-toggle,
.bod-nav-link.bod-dropdown-toggle:hover,
.bod-nav-link.bod-dropdown-toggle:focus,
.bod-nav-link.bod-dropdown-toggle:active,
.bod-nav-link.bod-dropdown-toggle.show,
.bod-nav-link.bod-dropdown-toggle[aria-expanded="true"] {
    color: #ffffff !important;
}

.bod-nav-link.bod-dropdown-toggle::after {
    border-top-color: currentColor;
}

.bod-dropdown-toggle:hover,
.bod-dropdown-toggle:focus {
    color: white;
}

.bod-dropdown-toggle.active {
    color: white;
    font-weight: 500;
}

.navbar-nav .dropdown-menu {
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    min-width: 210px;
}

.navbar-nav .dropdown-item {
    font-size: 14px;
    color: var(--bod-text);
    padding: 7px 16px;
}

.navbar-nav .dropdown-item:hover {
    background: var(--bod-info-bg);
    color: var(--bod-navy);
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background: var(--bod-navy);
    color: #ffffff;
}

/* Hamburger */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 5px 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================================================================
   6. Mobile offcanvas nav
   ========================================================================== */

.bod-mobile-nav {
    max-width: 320px;
    height: 100%;
}

.bod-mobile-nav .offcanvas-header {
    background: var(--bod-navy);
    border-bottom: 2px solid var(--bod-gold);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bod-mobile-nav .offcanvas-header .bod-logo {
    font-size: 1rem;
}

.bod-mobile-nav .offcanvas-header .btn-close {
    filter: invert(1) brightness(1.5);
    opacity: 0.8;
}

.bod-mobile-nav .offcanvas-body {
    background: var(--bod-surface);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.bod-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--bod-text);
    text-decoration: none;
    border-bottom: 1px solid var(--bod-border);
    border-left: 3px solid transparent;
    transition: background-color 0.15s;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.bod-mobile-nav-link i {
    font-size: 1.05rem;
    color: var(--bod-gold);
    width: 1.2rem;
    text-align: center;
    flex-shrink: 0;
}

.bod-mobile-nav-link:hover {
    background: var(--bod-info-bg);
    color: var(--bod-navy);
    text-decoration: none;
}

.bod-mobile-nav-link:hover i {
    color: var(--bod-gold);
}

.bod-mobile-nav-link.active {
    background: #f0f5fb;
    color: var(--bod-navy);
    border-left-color: var(--bod-gold);
    font-weight: 600;
}

.bod-mobile-nav-link.active i {
    color: var(--bod-gold);
}

.bod-mobile-nav-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 8px;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--bod-text-muted);
}

.bod-mobile-nav-section::before,
.bod-mobile-nav-section::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bod-border);
}

.bod-mobile-nav-footer {
    margin-top: auto;
    border-top: 1px solid var(--bod-border);
    padding: 0.875rem 1.25rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--bod-text-muted);
    background: var(--bod-bg);
}

/* ==========================================================================
   7. Footer — placeholder (populated when footer partial is built)
   ========================================================================== */

/* Section 7: Footer — populated when footer partial is built */

.bod-footer {
    background: var(--bod-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 1.5rem;
    margin-top: var(--space-xl);
    font-size: 0.875rem;
}

.bod-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.bod-footer-logo:hover {
    color: white;
    text-decoration: none;
}

.bod-footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--bod-radius-xs);
    flex-shrink: 0;
}

.bod-footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin-bottom: 0;
}

.bod-footer-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1rem;
}

.bod-footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin-bottom: 0.45rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.bod-footer-link:hover {
    color: var(--bod-gold-light);
    text-decoration: none;
}

.bod-footer-link i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.bod-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0 1rem;
}

.bod-footer-bottom {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.bod-footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

.bod-footer-bottom a:hover {
    color: white;
}

.bod-footer-link-sm {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.bod-footer-link-sm:hover {
    color: var(--bod-gold-light);
    text-decoration: none;
}

/* ==========================================================================
   8. Utility / section classes
   ========================================================================== */

.bod-section {
    padding: 4rem 0;
}

.bod-section-bg {
    background: var(--bod-bg);
    padding: 4rem 0;
}

.bod-text-muted {
    color: var(--bod-text-muted);
}

.bod-badge-state {
    display: inline-block;
    background: var(--bod-info-bg);
    color: var(--bod-navy);
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: var(--bod-radius-xs);
    letter-spacing: 0.02em;
}

.bod-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bod-info-bg);
    color: var(--bod-gold);
    font-size: 12px;
    font-weight: 400;
    padding: 2px 8px;
    border-radius: var(--bod-radius-xs);
}

.bod-card {
    background: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius);
    padding: 1.5rem;
}

/* ==========================================================================
   9. Buttons
   ========================================================================== */

.bod-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bod-gold);
    color: white;
    border: 1px solid var(--bod-gold);
    border-radius: var(--bod-radius-sm);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s;
}

.bod-btn-primary:hover {
    background: var(--bod-gold-light);
    border-color: var(--bod-gold-light);
    color: white;
    text-decoration: none;
}

.bod-btn-primary:focus {
    outline: 2px solid var(--bod-gold);
    outline-offset: 2px;
}

.bod-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bod-btn-block {
    width: 100%;
}

.bod-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bod-surface);
    color: var(--bod-navy);
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius-sm);
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
}

.bod-btn-secondary:hover {
    border-color: var(--bod-navy);
    background-color: var(--bod-info-bg);
    text-decoration: none;
}

/* ==========================================================================
   10. Page hero (national pages)
   ========================================================================== */

.bod-page-hero {
    background-color: var(--bod-hero-bg);
    background-image: radial-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
    border-bottom: 2px solid var(--bod-border);
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
}

.bod-page-hero h1 {
    color: var(--bod-navy);
    border-left: 4px solid var(--bod-gold);
    padding-left: 0.875rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.bod-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--bod-text-muted);
    padding-left: calc(0.875rem + 4px);
    margin-bottom: 0.6rem;
    list-style: none;
    padding-bottom: 0;
}

.bod-breadcrumb a {
    color: var(--bod-navy);
    text-decoration: none;
}

.bod-breadcrumb a:hover {
    color: var(--bod-gold);
    text-decoration: underline;
}

.bod-breadcrumb span[aria-hidden] {
    color: var(--bod-text-muted);
    opacity: 0.5;
}

.bod-breadcrumb span[aria-current] {
    color: var(--bod-text-muted);
}

.bod-page-hero .bod-page-lead {
    color: var(--bod-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: calc(0.875rem + 4px);
    margin-bottom: 0.75rem;
    max-width: 760px;
}

.bod-page-hero .bod-last-updated-badge {
    padding-left: calc(0.875rem + 4px);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--bod-text-muted);
}

.bod-page-hero .bod-last-updated-badge i {
    color: var(--bod-gold);
}

.bod-page-hero .bod-trust-badges {
    padding-left: calc(0.875rem + 4px);
}

.bod-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-top: 0.75rem;
}

.bod-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--bod-text-muted);
}

.bod-trust-badge i {
    font-size: 0.875rem;
    line-height: 1;
}

/* ==========================================================================
   11. Last-verified badge
   ========================================================================== */

.bod-last-updated-badge {
    padding-left: calc(0.875rem + 4px);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--bod-text-muted);
}

.bod-last-updated-badge i {
    color: var(--bod-gold);
}

.bod-last-updated-badge.is-unverified {
    color: var(--bod-text-muted);
    font-style: italic;
    opacity: 0.85;
}

.bod-last-updated-badge.is-unverified i {
    color: var(--bod-gold-light);
}

/* ==========================================================================
   12. Accessibility — skip link
   ========================================================================== */

.bod-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--bod-navy);
    color: #fff;
    padding: 0.6rem 1rem;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.bod-skip-link:focus {
    left: 0;
}

/* ==========================================================================
   8. Content cards (.bod-content-section)
   ========================================================================== */

.bod-content-section {
    background: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.bod-content-section h2 {
    border-bottom: 2px solid var(--bod-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.bod-content-section h3 {
    margin-top: 1.75rem;
}

.bod-content-section h3:first-child {
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .bod-content-section {
        padding: 1.25rem;
    }
}

/* Deep-link anchor target: scroll-margin-top so sticky navbar doesn't cover the target */
.bod-anchor-target,
.bod-content-section {
    scroll-margin-top: calc(var(--bod-navbar-height) + 16px);
}

/* ==========================================================================
   9. Callouts (.bod-callout / .bod-important-callout)
   ========================================================================== */

.bod-important-callout {
    background: rgba(200, 147, 43, 0.08);
    border: 1px solid rgba(200, 147, 43, 0.25);
    border-left: 3px solid var(--bod-gold);
    border-radius: 0 6px 6px 0;
    position: relative;
    padding: 1rem 1.25rem 1rem calc(9rem + 2rem); /* gutter = badge width + 0.75rem gap */
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--bod-text-muted);
    line-height: 1.55;
}

.bod-important-badge {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    width: 9rem; /* fixed gutter width; long labels wrap within it */
    display: inline-block;
    background: var(--bod-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    white-space: normal;
    line-height: 1.3;
}

.bod-important-callout p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--bod-text-muted);
    line-height: 1.55;
}

.bod-callout {
    border-radius: 0 6px 6px 0;
    position: relative;
    padding: 1rem 1.25rem 1rem calc(9rem + 2rem); /* gutter = badge width + 0.75rem gap */
    margin-top: 1.5rem;
    background: var(--bod-tint-bg);
    border: 1px solid var(--bod-border);
    border-left: 3px solid var(--bod-text-muted);
    font-size: 0.875rem;
    color: var(--bod-text-muted);
    line-height: 1.55;
}

.bod-callout-tip {
    background: var(--bod-info-bg);
    border: 1px solid rgba(30, 58, 95, 0.2);
    border-left: 3px solid var(--bod-navy);
}

.bod-callout-warning {
    background: var(--bod-warning-bg);
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-left: 3px solid var(--bod-warning);
}

.bod-callout p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--bod-text-muted);
    line-height: 1.55;
}

.bod-badge-tip {
    background: var(--bod-navy) !important;
}

@media (max-width: 767.98px) {
    .bod-important-callout,
    .bod-callout {
        padding-left: 1.25rem; /* remove desktop gutter */
    }

    .bod-important-badge {
        position: static;
        display: block;
        width: fit-content;
        margin-bottom: 0.5rem;
        white-space: nowrap;
    }
}

.bod-badge-warning {
    background: var(--bod-warning) !important;
}

/* ==========================================================================
   10. Feature lists (.bod-feature-list / .bod-feature-item)
   ========================================================================== */

.bod-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bod-feature-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.6;
    list-style: none;
}

.bod-feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8932b'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.bod-feature-item i {
    display: none;
}

/* ==========================================================================
   11. FAQ accordion (.bod-faq-accordion)
   ========================================================================== */

.bod-faq-accordion .accordion-item {
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius-sm) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.bod-faq-accordion .accordion-button {
    font-family: var(--font-heading);
    color: var(--bod-navy);
    font-size: 1rem;
    font-weight: 600;
    background: var(--bod-surface);
    box-shadow: none;
}

.bod-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--bod-navy);
    background: var(--bod-info-bg);
    border-bottom: 2px solid var(--bod-gold);
    box-shadow: none;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8932b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bod-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(200, 147, 43, 0.2);
}

.bod-faq-accordion .accordion-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bod-text);
    background: var(--bod-surface);
}

/* ==========================================================================
   12. Find cards (.bod-find-card)
   ========================================================================== */

.bod-find-card {
    background: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-left: 3px solid var(--bod-gold);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    display: block;
    text-decoration: none;
    color: var(--bod-text);
    transition: box-shadow 0.18s, transform 0.18s;
    height: 100%;
}

.bod-find-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--bod-text);
}

.bod-find-card i {
    font-size: 1.4rem;
    color: var(--bod-gold);
    margin-bottom: 0.4rem;
    display: block;
}

.bod-find-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bod-navy);
    margin-bottom: 0.25rem;
}

.bod-find-desc {
    font-size: 0.875rem;
    color: var(--bod-text-muted);
    line-height: 1.55;
    margin: 0;
}

.bod-find-card-static {
    cursor: default;
}

.bod-find-card-static:hover {
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   13. Audience cards (.bod-audience-card)
   ========================================================================== */

.bod-audience-card {
    background: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-top: 3px solid var(--bod-gold);
    border-radius: 6px;
    padding: 1rem 1.15rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--bod-text);
    transition: box-shadow 0.18s, transform 0.18s;
}

a.bod-audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.bod-audience-card .bi {
    color: var(--bod-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.bod-audience-card .audience-title {
    color: var(--bod-navy);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.bod-audience-card .audience-desc {
    color: var(--bod-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   14. Data tables (.bod-data-table)
   ========================================================================== */

.bod-data-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--bod-border);
    border-radius: 6px;
    background: var(--bod-surface);
    margin-bottom: 1.5rem;
}

.bod-data-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: separate;
    border-spacing: 0;
}

.bod-data-table thead th {
    background: var(--bod-navy);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.7rem 0.85rem;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    border-bottom: 3px solid var(--bod-gold);
}

.bod-data-table thead th:first-child { border-top-left-radius: 6px; }
.bod-data-table thead th:last-child  { border-top-right-radius: 6px; }

.bod-data-table thead th .bi {
    color: var(--bod-gold-light);
    margin-right: 0.35rem;
    font-size: 0.85rem;
}

.bod-data-table tbody td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--bod-border);
    vertical-align: middle;
    color: var(--bod-text);
    line-height: 1.5;
}

.bod-data-table tbody tr:last-child td {
    border-bottom: none;
}

.bod-data-table tbody tr:hover td {
    background: var(--bod-info-bg);
}

.bod-data-table tbody td:first-child {
    font-weight: 600;
    color: var(--bod-navy);
}

.bod-data-table tbody td:first-child::before {
    content: "●";
    color: var(--bod-gold);
    margin-right: 0.4rem;
    font-size: 0.65rem;
    vertical-align: middle;
}

.bod-data-table .bod-cell-action {
    color: var(--bod-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.bod-data-table .bod-cell-action:hover {
    text-decoration: underline;
}

.bod-data-table-filter .input-group-text {
    border-color: var(--bod-border);
}

.bod-data-table-filter .form-control {
    border-color: var(--bod-border);
}

.bod-data-table-filter .form-control:focus {
    border-color: var(--bod-gold);
    box-shadow: 0 0 0 0.15rem rgba(200, 147, 43, 0.15);
}

.bod-data-table-sticky-head th {
    position: sticky;
    top: 0;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .bod-data-table tbody td:first-child {
        position: sticky;
        left: 0;
        background: var(--bod-surface);
        border-right: 1px solid var(--bod-border);
        z-index: 1;
    }

    .bod-data-table tbody tr:hover td:first-child {
        background: var(--bod-info-bg);
    }
}

/* ==========================================================================
   15. State cards (.bod-state-card-callout)
   ========================================================================== */

.bod-state-card-callout {
    display: block;
    background-color: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-left: 4px solid var(--bod-gold);
    border-radius: var(--bod-radius);
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: var(--bod-text);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
    height: 100%;
}

.bod-state-card-callout:hover {
    border-color: var(--bod-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--bod-navy);
    text-decoration: none;
    transform: translateY(-1px);
}

.bod-state-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bod-navy);
    margin-bottom: 0.15rem;
}

.bod-state-card-hint {
    font-size: 0.83rem;
    color: var(--bod-text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ==========================================================================
   16. State dropdown (.bod-state-select-group)
   ========================================================================== */

.bod-state-select-group .input-group-text {
    background: var(--bod-surface);
    border-color: var(--bod-border);
    color: var(--bod-text);
}

.bod-state-select-group .input-group-text i {
    color: var(--bod-gold);
}

.bod-state-select-group .form-select {
    border-color: var(--bod-border);
}

.bod-state-select-group .form-select:focus {
    border-color: var(--bod-gold);
    box-shadow: 0 0 0 0.15rem rgba(200, 147, 43, 0.15);
}

@media (max-width: 767.98px) {
    .bod-state-select-group {
        flex-direction: column;
    }
    .bod-state-select-group .input-group-text {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
        border-bottom: none;
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    .bod-state-select-group .form-select {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        margin-top: -1px;
        border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
        font-size: 1rem;
        padding-left: 0.75rem;
    }
}

/* ==========================================================================
   13. Prose container (readable content width)
   ========================================================================== */

.bod-prose {
    max-width: var(--bod-content-max);
    margin-left: auto;
    margin-right: auto;
}

.bod-prose > p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--bod-text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   14. Section heading with accent bar
   ========================================================================== */

.bod-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--bod-navy);
    text-align: center;
    margin-bottom: 0.25rem;
}

.bod-section-heading-bar {
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--bod-gold);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ==========================================================================
   15. Responsive adjustments
   ========================================================================== */

@media (max-width: 767.98px) {
    .bod-disclaimer-banner {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .bod-section,
    .bod-section-bg {
        padding: 2.5rem 0;
    }

    .bod-footer {
        padding: 2.5rem 0 1rem;
        margin-top: var(--space-lg);
    }

    .bod-nav-link.active {
        color: white;
        font-weight: 500;
        border-bottom-color: transparent;
    }

    .bod-page-hero {
        padding: 2rem 0 1.5rem;
    }

    .bod-page-hero h1 {
        padding-left: 0.65rem;
        font-size: 1.4rem;
    }

    .bod-page-hero .bod-page-lead,
    .bod-breadcrumb,
    .bod-page-hero .bod-last-updated-badge {
        padding-left: calc(0.65rem + 4px);
    }
}

/* ==========================================================================
   17. State quick-facts card (.bod-state-quick-facts)
   ========================================================================== */

.bod-state-quick-facts {
    background-color: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius);
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.bod-state-quick-facts h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--bod-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--bod-gold);
}

.bod-state-quick-facts dl {
    margin: 0;
}

.bod-state-quick-facts dt {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bod-text-muted);
    margin-top: 0.85rem;
    margin-bottom: 0.1rem;
}

.bod-state-quick-facts dt:first-child {
    margin-top: 0;
}

.bod-state-quick-facts dd {
    font-size: 0.95rem;
    color: var(--bod-text);
    margin-left: 0;
    margin-bottom: 0;
    line-height: 1.55;
}

.bod-state-quick-facts dd a {
    color: var(--bod-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bod-state-quick-facts dd a:hover {
    color: var(--bod-gold);
}

.bod-state-address {
    white-space: pre-line;
}

@media (max-width: 767.98px) {
    .bod-state-quick-facts {
        padding: 1.25rem 1.1rem;
    }
}

/* ==========================================================================
   18. State sub-nav (.bod-state-subnav)
   ========================================================================== */

.bod-state-subnav {
    background: var(--bod-surface);
    border-top: 1px solid var(--bod-border);
    border-bottom: 1px solid var(--bod-border);
    padding: 0.75rem 0;
    position: sticky;
    top: var(--bod-navbar-height);
    z-index: 1019;
}

.bod-state-subnav .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    scroll-snap-type: x proximity;
    scroll-padding-left: 1rem;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.bod-state-subnav .container::-webkit-scrollbar {
    display: none;
}

.bod-subnav-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--bod-radius-pill);
    border: 1.5px solid var(--bod-navy);
    color: var(--bod-navy);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    line-height: 1.3;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.bod-subnav-pill:hover {
    background-color: var(--bod-gold-tint);
    color: var(--bod-gold);
    border-color: var(--bod-gold);
    text-decoration: none;
}

.bod-subnav-pill.active {
    background-color: var(--bod-navy);
    color: #fff;
    border-color: var(--bod-navy);
}

.bod-subnav-pill.active:hover {
    background-color: var(--bod-gold);
    color: #fff;
    border-color: var(--bod-gold);
}

[id^="section-"] {
    scroll-margin-top: calc(var(--bod-navbar-height, 64px) + 71px);
}

@media (min-width: 768px) {
    [id^="section-"] {
        scroll-margin-top: calc(var(--bod-navbar-height, 64px) + 79px);
    }
}

@media (max-width: 767.98px) {
    .bod-state-subnav {
        overflow: visible;
    }

    .bod-state-subnav .container {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .bod-state-subnav::before,
    .bod-state-subnav::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 32px;
        pointer-events: none;
        z-index: 2;
    }

    .bod-state-subnav::before {
        left: 0;
        background: linear-gradient(to right, var(--bod-surface), transparent);
    }

    .bod-state-subnav::after {
        right: 0;
        background: linear-gradient(to left, var(--bod-surface), transparent);
    }
}

/* ==========================================================================
   19. Info cards (.bod-info-card) — sidebar cards used on contact page
   ========================================================================== */

.bod-info-card {
    background: var(--bod-surface);
    border: 1px solid var(--bod-border);
    border-radius: var(--bod-radius-lg);
    padding: 1.25rem 1.5rem 1.5rem;
    border-left: 4px solid var(--bod-gold);
}

.bod-info-card__icon {
    font-size: 1.4rem;
    color: var(--bod-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.bod-info-card__heading {
    font-family: var(--bod-font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bod-navy);
    margin-bottom: 0.65rem;
}

.bod-info-card__body {
    font-size: 0.9rem;
    color: var(--bod-text);
    line-height: 1.6;
    margin-bottom: 0.65rem;
}

.bod-link {
    color: var(--bod-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bod-link:hover {
    color: var(--bod-gold);
}

/* ==========================================================================
   20. Utilities
   ========================================================================== */

/* Honeypot field — off-screen so bots can fill it, humans cannot see it */
.bod-honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

