:root {
  --navy: #03244d;
  --navy-dark: #021830;
  --orange: #c75d27;
  --orange-dark: #a84d20;
  --white: #ffffff;
  --cream: #f4f4f4;
  --body: #333333;
  --mid: #7a8499;
  --mid-light: #9aa3b0;
  --border: #dde3ea;
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 2.5rem;
  --s6: 3rem;
  --s7: 3.5rem;
  --s8: 4rem;
  --s9: 4.5rem;
  --s10: 5rem;
  --s12: 6rem;
  --s13: 6.5rem;
  --s15: 7.5rem;
  --s16: 8rem;
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1.125rem;
  --t-lg: 1.25rem;
  --t-h4: 1.5rem;
  --t-h3: 1.875rem;
  --t-h2: 2.375rem;
  --t-h1: 3rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.bboa-home {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
  font-size: clamp(1rem, 1.1vw, var(--t-base));
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}

:where(body.bboa-home) a { color: inherit; text-decoration: none; }
:where(body.bboa-home) p { margin: 0; }
:where(body.bboa-home) h1,
:where(body.bboa-home) h2,
:where(body.bboa-home) h3,
:where(body.bboa-home) h4 {
  font-family: 'Libre Baskerville', Baskerville, Georgia, serif;
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[\.9fr_1\.1fr\] { grid-template-columns: .9fr 1.1fr; }
}

.bboa-wrap { width: min(1140px, calc(100% - 160px)); margin: 0 auto; }
.bboa-section { padding: var(--s13) 0; }
.bboa-section-sm { padding: var(--s9) 0; }
.bboa-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bboa-header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); height: 72px; max-width: 1140px; margin: 0 auto; padding: 0 var(--s3); position: relative; }
.bboa-logo { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1rem; color: #fff !important; line-height: 1; white-space: nowrap; letter-spacing: 0.01em; display: flex; align-items: center; }
.bboa-logo img { height: 46px; width: auto; display: block; }
.bboa-header-center { display: none; align-items: center; gap: 2rem; }
.bboa-nav-link { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 0.875rem; font-weight: 400; letter-spacing: 0.01em; color: rgba(255,255,255,0.72); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 0.18s ease, border-color 0.18s ease; white-space: nowrap; }
.bboa-nav-link:hover, .bboa-nav-link.active { color: #fff; border-bottom-color: var(--orange); }
.bboa-header-right { display: flex; align-items: center; gap: var(--s2); flex-shrink: 0; }
.bboa-header-phone { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1.125rem; color: var(--orange) !important; white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s1); min-height: 48px; padding: 0 var(--s5); border-radius: 4px; font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; line-height: 1; cursor: pointer; border: 2px solid transparent; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; text-align: center; white-space: nowrap; }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(199,93,39,0.25); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: scale(1.03); box-shadow: 0 6px 28px rgba(199,93,39,0.35); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.40); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.80); background: rgba(255,255,255,0.06); transform: scale(1.03); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: scale(1.03); }
.btn-sm { min-height: 44px; padding: 0 var(--s3); font-size: var(--t-sm); }
.btn-lg { min-height: 56px; padding: 0 var(--s6); font-size: 1.0625rem; }
.btn-full { width: 100%; }
.label { display: inline-block; font-family: 'Montserrat', system-ui, sans-serif; font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: var(--s2); }
.bboa-hero { background: #06101e; padding: var(--s15) 0 var(--s12); margin-top: 72px; position: relative; overflow: hidden; }
.hero-photo-bg { position: absolute; inset: -6px; z-index: 0; transition: filter 0.55s ease; background-image: url('../images/hero-bg.webp'); background-size: cover; background-position: center 40%; filter: blur(3.5px) brightness(0.85); }
.hero-photo-overlay { position: absolute; inset: 0; z-index: 1; opacity: 1; transition: opacity 0.55s ease; background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 38%, rgba(0,0,0,0.72) 100%), linear-gradient(to bottom, rgba(3,14,30,0.70) 0%, rgba(3,14,30,0.35) 40%), linear-gradient(to top, rgba(3,14,30,0.65) 0%, transparent 35%), rgba(3,14,30,0.55); pointer-events: none; }
.bboa-hero > .bboa-wrap { position: relative; z-index: 2; }
.bboa-hero:has(.btn:hover) .hero-photo-bg { filter: blur(0.8px) brightness(0.92); }
.bboa-hero:has(.btn:hover) .hero-photo-overlay { opacity: 0.45; }
.bboa-hero .label { color: var(--orange); }
.bboa-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.4375rem); line-height: 1.10; margin-bottom: var(--s1); font-weight: 400; }
.hero-sub { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: clamp(1.125rem, 2.2vw, 1.375rem); color: rgba(255,255,255,0.82); font-weight: 700; margin-bottom: var(--s3); line-height: 1.4; }
.hero-body { color: rgba(255,255,255,0.78); font-size: 1.0625rem; line-height: 1.65; max-width: 520px; margin-bottom: var(--s5); }
.hero-badges { display: flex; flex-direction: column; gap: var(--s1); margin-top: var(--s4); }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px var(--s2); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 3px; font-size: var(--t-sm); color: rgba(255,255,255,0.85); line-height: 1.4; }
.badge-check { color: var(--orange); font-size: 1rem; font-weight: 700; flex-shrink: 0; line-height: 1; }
.hero-card { background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: var(--s5) var(--s4); }
.hero-card-eyebrow { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: var(--t-sm); color: var(--orange); letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: var(--s3); }
.hero-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.10); margin: var(--s3) 0; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-bottom: var(--s4); }
.hero-stat { background: rgba(255,255,255,0.06); border-radius: 4px; padding: var(--s2); text-align: center; }
.hero-stat-num { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hero-stat-lbl { font-size: var(--t-xs); color: rgba(255,255,255,0.45); margin-top: 4px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: var(--s5); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.stars { color: var(--orange); font-size: 0.875rem; display: flex; gap: 0.15em; align-items: center; margin-bottom: var(--s2); }
.t-quote { font-style: italic; font-size: 0.9375rem; line-height: 1.75; color: var(--mid); margin-bottom: var(--s2); font-weight: 400; }
.t-name { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: var(--t-sm); color: var(--navy); }
.t-loc { font-size: var(--t-xs); color: var(--mid-light); margin-top: 3px; }
.cred-card { background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--orange); border-radius: 0 0 4px 4px; padding: var(--s3) var(--s2); text-align: left; }
.cred-title { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: var(--t-sm); color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.cred-sub { font-size: var(--t-xs); color: var(--mid); font-weight: 400; letter-spacing: 0.01em; }
.offer-box { background: var(--navy); border-radius: 6px; padding: var(--s6) var(--s5); color: #fff; position: relative; overflow: hidden; isolation: isolate; transition: box-shadow 0.22s ease, transform 0.22s ease; }
.offer-box::before { content: ''; position: absolute; inset: -8px; background-image: url('../images/offer-bg.webp'); background-size: cover; background-position: 74% 42%; filter: blur(2px); transform: scale(1.02); z-index: -2; transition: filter 0.22s ease, transform 0.22s ease; }
.offer-box::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,24,48,0.92), rgba(3,36,77,0.70) 48%, rgba(2,24,48,0.78)); z-index: -1; transition: opacity 0.22s ease; }
.offer-box:has(.btn:hover) { box-shadow: 0 16px 42px rgba(3,36,77,0.24); }
.offer-box:has(.btn:hover)::before { filter: blur(2px) brightness(1.18); transform: scale(1.035); }
.offer-box:has(.btn:hover)::after { opacity: 0.82; }
.offer-box > * { position: relative; z-index: 1; }
.offer-num { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: clamp(4rem, 10vw, 6rem); font-weight: 700; color: var(--orange); line-height: 1; display: block; margin-bottom: var(--s1); }
.offer-label { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 1.125rem; color: #fff; margin-bottom: var(--s2); line-height: 1.3; }
.offer-comparison { background: rgba(255,255,255,0.06); border-radius: 4px; padding: var(--s3); margin-bottom: var(--s4); }
.offer-compare-row { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); }
.offer-compare-lbl { font-size: var(--t-xs); color: rgba(255,255,255,0.45); margin-bottom: 4px; letter-spacing: 0.05em; }
.offer-compare-old { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 1.75rem; font-weight: 700; color: rgba(255,255,255,0.25); text-decoration: line-through; }
.offer-compare-new { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--orange); }
.offer-arrow { font-size: 1.25rem; color: rgba(255,255,255,0.22); }
.offer-box .btn-primary:hover { background: #df692e; border-color: #df692e; box-shadow: 0 8px 32px rgba(199,93,39,0.44); }
.offer-secondary-btn { background: rgba(3,36,77,0.42); color: #fff; border: 1px solid rgba(255,255,255,.28); font-size: 0.9375rem; backdrop-filter: blur(1px); }
.offer-secondary-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.48); transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s2); }
.check-list li { display: flex; gap: var(--s2); align-items: flex-start; font-size: 1rem; line-height: 1.65; }
.check-list-icon { color: var(--orange); font-size: 1rem; line-height: 1.4; flex-shrink: 0; margin-top: 0.22em; }
.callout-orange { background: #fff7f3; border-left: 3px solid var(--orange); border-radius: 0 4px 4px 0; padding: var(--s3) var(--s3); }
.callout-navy { background: #06101e; border-radius: 6px; padding: var(--s5); color: #fff; position: relative; overflow: hidden; }
.callout-navy::before { content: ''; position: absolute; inset: -6px; background-image: url('../images/warrant-card-bg.webp'); background-size: cover; background-position: center center; filter: blur(3px) brightness(0.62); transition: filter 0.55s ease; z-index: 0; }
.callout-navy::after { content: ''; position: absolute; inset: 0; background: rgba(2, 10, 26, 0.70); transition: background 0.55s ease; z-index: 1; }
.callout-navy > * { position: relative; z-index: 2; }
.callout-navy:has(.btn:hover)::before { filter: blur(0.8px) brightness(0.80); }
.callout-navy:has(.btn:hover)::after { background: rgba(2, 10, 26, 0.42); }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: var(--s4); transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.service-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(199,93,39,0.10); }
.service-card.featured { border-color: var(--orange); background: #fff9f6; }
.service-card.featured-navy { border-color: var(--navy); background: #f7f9fd; }
.service-icon { width: 40px; height: 40px; background: rgba(199,93,39,0.08); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--s2); font-size: 1.125rem; }
.service-icon-navy { background: rgba(3,36,77,0.07); }
.service-name { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: var(--s1); line-height: 1.3; }
.service-desc { font-size: var(--t-sm); color: var(--mid-light); line-height: 1.6; font-weight: 400; }
#jails { position: relative; overflow: hidden; }
#jails::before { content: ''; position: absolute; inset: -6px; background-image: url('../images/jails-bg.webp'); background-size: cover; background-position: center 45%; filter: blur(3px) brightness(0.55); transition: filter 0.55s ease; z-index: 0; }
#jails::after { content: ''; position: absolute; inset: 0; background: rgba(2, 10, 26, 0.72); transition: background 0.55s ease; z-index: 1; }
#jails > .bboa-wrap { position: relative; z-index: 2; }
#jails:has(.btn:hover)::before { filter: blur(0.8px) brightness(0.82); }
#jails:has(.btn:hover)::after { background: rgba(2, 10, 26, 0.42); }
.county-col h3 { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: var(--s2); padding-bottom: var(--s1); border-bottom: 1px solid rgba(255,255,255,0.12); letter-spacing: 0.01em; }
.county-col h3 a.county-link { color: #fff; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.18s ease, border-color 0.18s ease; }
.county-col h3 a.county-link:hover, .county-col h3 a.county-link:focus-visible { color: var(--orange); border-bottom-color: var(--orange); }
.county-col ul { list-style: none; padding: 0; margin: 0; }
.county-col li { font-size: var(--t-sm); color: rgba(255,255,255,0.68); padding: 5px 0; display: flex; align-items: center; gap: var(--s1); line-height: 1.45; }
.county-col li::before { content: '›'; color: var(--orange); font-weight: 700; }
.county-col li a.jail-link { color: rgba(255,255,255,0.76); text-decoration: none; transition: color 0.18s ease; }
.county-col li a.jail-link:hover, .county-col li a.jail-link:focus-visible { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
#area .card p a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(199,93,39,0.35); transition: color 0.18s ease, border-color 0.18s ease; }
#area .card p a:hover, #area .card p a:focus-visible { color: var(--orange); border-bottom-color: var(--orange); }
.county-note { margin-top: var(--s3); background: rgba(199,93,39,0.12); border: 1px solid rgba(199,93,39,0.26); border-radius: 4px; padding: var(--s2) var(--s2); font-size: var(--t-sm); color: rgba(255,255,255,0.85); line-height: 1.6; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); margin-bottom: var(--s5); }
.g-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--orange); border-radius: 0 0 6px 6px; padding: var(--s5) var(--s4) var(--s4); box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.g-metric { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: clamp(3rem, 6vw, 4rem); font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: var(--s2); }
.g-name { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1.0625rem; color: var(--navy); margin-bottom: var(--s2); line-height: 1.25; }
.g-body { font-size: 0.9375rem; color: var(--mid); line-height: 1.65; flex-grow: 1; }
.g-tag { display: inline-block; margin-top: var(--s3); font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--orange); }
.faq-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 4px var(--s5); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s2); padding: var(--s3) 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.4; }
.faq-icon { font-size: 1.5rem; color: var(--orange); line-height: 1; flex-shrink: 0; transition: transform 0.18s ease; font-family: 'Montserrat', sans-serif; font-weight: 400; }
.faq-answer { display: none; padding: 0 0 var(--s3); font-size: 0.9375rem; line-height: 1.7; color: var(--mid); max-width: 660px; font-weight: 400; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.cta-section { background: #04101e; padding: var(--s15) 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: -6px; background-image: url('../images/cta-bg.webp'); background-size: cover; background-position: center 18%; filter: blur(3px) brightness(0.65); transition: filter 0.55s ease; z-index: 0; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: rgba(2, 10, 26, 0.72); transition: background 0.55s ease; z-index: 1; pointer-events: none; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section:has(.btn:hover)::before { filter: blur(0.8px) brightness(0.82); }
.cta-section:has(.btn:hover)::after { background: rgba(2, 10, 26, 0.42); }
.cta-phone { display: block; font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 700; color: var(--orange); margin: var(--s2) 0; line-height: 1; }
.bboa-footer { background: var(--navy-dark); padding: var(--s8) 0 var(--s5); color: rgba(255,255,255,0.55); font-size: var(--t-sm); line-height: 1.75; }
.footer-logo { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: 1.0625rem; color: #fff; margin-bottom: 4px; }
.footer-tagline { font-size: var(--t-xs); color: rgba(255,255,255,0.38); margin-bottom: var(--s2); letter-spacing: 0.04em; }
.footer-heading { font-family: 'Libre Baskerville', Baskerville, Georgia, serif; font-weight: 700; font-size: var(--t-sm); color: #fff; margin-bottom: var(--s2); }
.bboa-footer a { color: rgba(255,255,255,0.55); transition: color 0.15s ease; }
.bboa-footer a:hover { color: var(--orange); }
.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: var(--s4) 0 var(--s3); }

.bboa-blog { margin-top: 72px; }
.bboa-blog-intro { max-width: 640px; margin: 0 auto var(--s8); }
.bboa-blog-title { font-size: clamp(2rem, 4vw, var(--t-h1)); margin-bottom: var(--s2); }
.bboa-blog-lede { color: var(--mid); font-size: var(--t-lg); line-height: 1.7; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(3,36,77,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(3,36,77,0.12); border-color: rgba(199,93,39,0.40); }
.blog-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.blog-card-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: var(--s4); display: flex; flex-direction: column; flex: 1 1 auto; }
.blog-card-meta { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: 0.10em; color: var(--mid); font-weight: 600; margin-bottom: var(--s1); }
.blog-card-title { font-size: var(--t-h4); line-height: 1.2; margin-bottom: var(--s2); }
.blog-card-excerpt { color: var(--body); font-size: var(--t-sm); line-height: 1.65; margin-bottom: var(--s3); }
.blog-card-more { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--orange); font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; font-size: var(--t-sm); letter-spacing: 0.02em; }
.blog-empty { text-align: center; color: var(--mid); font-size: var(--t-lg); padding: var(--s8) 0; }
.blog-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s1); margin-top: var(--s8); }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0 var(--s2); border: 1px solid var(--border); border-radius: 4px; color: var(--navy); font-family: 'Montserrat', system-ui, sans-serif; font-weight: 600; font-size: var(--t-sm); transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.blog-pagination a.page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.blog-pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-pagination .page-numbers.dots { border-color: transparent; }

@media (min-width: 768px) {
  .bboa-header-center { display: flex; position: absolute; left: 50%; transform: translateX(-50%); pointer-events: auto; }
}

@media (max-width: 767px) {
  .bboa-header-inner { flex-wrap: wrap; height: auto; padding-bottom: 0; }
  .bboa-header-center { display: flex; justify-content: center; gap: 1.75rem; width: 100%; order: 3; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 8px; position: static; transform: none; }
  .bboa-nav-link { font-size: 0.8125rem; }
  .bboa-hero { margin-top: 116px; padding: 80px 0 64px; }
  .bboa-blog { margin-top: 116px; }
  .bboa-wrap { width: calc(100% - 40px); }
  .btn-lg { min-height: 44px; padding: 0 1.25rem; font-size: 0.875rem; }
  .btn { min-height: 44px; padding: 0 1rem; font-size: 0.875rem; }
  .bboa-section { padding: var(--s8) 0; }
  .bboa-section-sm { padding: var(--s6) 0; }
  .cta-section { padding: 80px 0; }
  .offer-box { padding: var(--s4) var(--s3); }
  .g-card { padding: var(--s4) var(--s3) var(--s3); }
  .faq-wrap { padding: 4px var(--s3); }
  .card { padding: var(--s4); }
  .callout-navy { padding: var(--s4); }
  .g-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bboa-wrap { width: min(900px, calc(100% - 80px)); }
  .bboa-section { padding: var(--s10) 0; }
  .bboa-section-sm { padding: var(--s9) 0; }
  .cta-section { padding: var(--s10) 0; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-grid .g-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
