/**
 * New Homepage Template Styles
 * Scoped to .bl-new-layout body class — zero conflict with live site.
 *
 * Header class prefix: .bl-nh  (Bicycle Law New Header)
 * Other components:    .bl-new-*
 *
 * Brand palette
 *   --bl-green      #9fca3a   lime/chartreuse accent
 *   --bl-black      #111111
 *   --bl-dark       #1c1c1c
 *   --bl-white      #ffffff
 */

/* ─── Custom Properties ──────────────────────────────────────────────────── */
:root {
  --bl-green: #9fca3a;
  --bl-green-dark: #84aa28;
  --bl-black: #111111;
  --bl-dark: #1c1c1c;
  --bl-white: #ffffff;
  --bl-grey-light: #f4f4f4;
  --bl-grey-mid: #e0e0e0;
  --bl-text: #1a1a1a;
  --bl-text-muted: #555555;

  --bl-font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --bl-font-display: "Bebas", "Bebas Neue", "Impact", "Arial Black", sans-serif;

  --bl-container: 1300px;
  --bl-radius: 4px;
  --bl-ease: 0.22s ease;

  --bl-util-h: 38px;
  --bl-nav-h: 70px;

  --tst-accent: #6f990c;

  --bl-footer-bg: #a4c639;
  --bl-footer-ink: #000000;
  --bl-footer-rule: #000000;
  --bl-footer-ul: 1px;
}

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

.bl-new-layout {
  font-family: var(--bl-font-body);
  color: var(--bl-text);
  background: var(--bl-white);
  -webkit-font-smoothing: antialiased;
}

.bl-new-layout img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Header hard-reset — defeats parent-theme overrides ────────────────── */
/* Scope every reset to header.bl-nh so specificity always wins             */
header.bl-nh,
header.bl-nh * {
  box-sizing: border-box;
}

header.bl-nh .bl-nh__logo-img,
header.bl-nh .bl-nh__logo .custom-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: none;
}

/* Kill any inherited list bullets/padding from theme or browser UA */
header.bl-nh ul,
header.bl-nh ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

header.bl-nh li {
  list-style: none !important;
  list-style-type: none !important;
  background: none !important; /* prevent any themed li::before bullets */
}

header.bl-nh li::before,
header.bl-nh li::after {
  display: none !important;
  content: "" !important;
}

header.bl-nh a {
  text-decoration: none;
  background: none;
  outline-offset: 2px;
}

header.bl-nh button {
  appearance: none;
  -webkit-appearance: none;
}

/* ─── Skip Link ──────────────────────────────────────────────────────────── */
.bl-nh__skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--bl-black);
  color: var(--bl-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--bl-radius) var(--bl-radius);
  z-index: 9999;
  transition: top var(--bl-ease);
}
.bl-nh__skip:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER WRAPPER
   ══════════════════════════════════════════════════════════════════════════ */
.bl-nh {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* ───────────────────────────────────────────────────────────────────────────
   TOP UTILITY BAR  — black background
   ─────────────────────────────────────────────────────────────────────────── */
header.bl-nh .bl-nh__util,
.bl-nh__util {
  background: #000000 !important;
  height: var(--bl-util-h);
}

.bl-nh__util-inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.bl-nh .bl-nh__util-list,
.bl-nh__util-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 72px; /* large equal gap matching design */
}

.bl-nh__util-item {
  display: flex;
  align-items: center;
}

/* No pipe separator — gap handles spacing */
.bl-nh__util-item--sep::before {
  display: none !important;
  content: "" !important;
}

.bl-nh__util-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bl-green); /* phone & email in lime green */
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--bl-ease);
  white-space: nowrap;
}

.bl-nh__util-link:hover,
.bl-nh__util-link:focus-visible {
  color: var(--bl-white);
}

.bl-nh__util-icon {
  flex-shrink: 0;
}

.bl-nh__util-link--lang {
  color: var(--bl-white); /* ESPAÑOL in white */
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bl-nh__util-link--lang:hover,
.bl-nh__util-link--lang:focus-visible {
  color: var(--bl-green);
}

/* ───────────────────────────────────────────────────────────────────────────
   PRIMARY NAV BAR  — lime green background
   Use header.bl-nh prefix to defeat parent-theme specificity
   ─────────────────────────────────────────────────────────────────────────── */
header.bl-nh .bl-nh__nav-bar,
.bl-nh__nav-bar {
  background: #9fca3a !important; /* lime green — explicit fallback */
}

.bl-nh__nav-inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--bl-nav-h);
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Logo ──────────────────────────────────────────────────────────────── */
.bl-nh__logo {
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.bl-nh__logo-link {
  display: block;
  text-decoration: none;
  line-height: 1;
  padding: 0.35rem 0;
}

header.bl-nh .bl-nh__logo-img,
.bl-nh__logo-img {
  height: 44px;
  width: auto;
  max-height: 44px;
  display: block;
}

/* Custom logo override: fits height, no colour filter (logo is on green bg) */
.bl-nh__logo .custom-logo-link img,
.bl-nh__logo .custom-logo {
  height: 44px;
  width: auto;
  max-height: 44px;
  display: block;
  filter: none;
}

/* Text fallback logo — black text on green nav bar */
.bl-nh__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: var(--bl-black);
  font-family: var(--bl-font-display);
  line-height: 1;
  letter-spacing: 0.04em;
}

.bl-nh__logo-line1 {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bl-black);
}

.bl-nh__logo-line2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: -2px;
  color: var(--bl-black);
}

.bl-nh__logo-icon {
  display: block;
}

/* ── Primary Navigation ────────────────────────────────────────────────── */
.bl-nh__primary-nav {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

header.bl-nh .bl-nh__menu,
.bl-nh__menu {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

header.bl-nh .bl-nh__menu > li,
.bl-nh__menu > li {
  list-style: none !important;
  position: relative;
}

header.bl-nh .bl-nh__menu > li > a,
.bl-nh__menu > li > a {
  display: flex;
  align-items: center; /* vertical-align: middle */
  justify-content: center; /* text-align: center */
  padding: 0 0.75rem;
  height: var(--bl-nav-h);
  font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-align: center;
  color: #111111 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    color var(--bl-ease),
    background var(--bl-ease);
  background: none;
}

.bl-nh__menu > li > a:hover,
.bl-nh__menu > li > a:focus-visible,
.bl-nh__menu > li.current-menu-item > a,
.bl-nh__menu > li.current-menu-ancestor > a {
  color: var(--bl-black);
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

/* ── Dropdown sub-menu ─────────────────────────────────────────────────── */
.bl-nh__menu li {
  position: relative; /* ensure every li is the positioning context */
}

.bl-nh__menu .sub-menu {
  position: absolute;
  min-width: 240px;
  background: var(--bl-black);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  /* hidden until parent li is hovered / focus-within (see overrides below) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--bl-ease),
    transform var(--bl-ease),
    visibility 0s linear var(--bl-ease);
  z-index: 9001;
  border-top: 3px solid var(--bl-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Top-level dropdown: beneath parent nav item */
.bl-nh__menu > li > .sub-menu {
  top: 100%;
  left: 0;
  transform: translateY(-8px);
  z-index: 9002;
}

/* 3rd+ level: flies out to the right of the submenu column */
@media (min-width: 961px) {
  .bl-nh__menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    transform: translateX(-12px);
    z-index: 9003;
  }
}

.bl-nh__menu > li:hover > .sub-menu,
.bl-nh__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity var(--bl-ease),
    transform var(--bl-ease),
    visibility 0s;
}

@media (min-width: 961px) {
  .bl-nh__menu .sub-menu li:hover > .sub-menu,
  .bl-nh__menu .sub-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      opacity var(--bl-ease),
      transform var(--bl-ease),
      visibility 0s;
  }
}

/* Parent items: caret so users see a submenu exists */
.bl-nh__menu > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.4em;
  margin-top: -0.1em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.85;
  pointer-events: none;
}

.bl-nh__menu .sub-menu li {
  display: block;
}

.bl-nh__menu .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bl-white);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--bl-ease),
    color var(--bl-ease);
  line-height: 1.3;
}

/* submenu row layout + right chevron must follow base .sub-menu a (win specificity on display) */
.bl-nh__menu .sub-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  padding-right: 1rem;
}

.bl-nh__menu .sub-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 0.36em;
  height: 0.36em;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg); /* ▸ */
  opacity: 0.75;
  pointer-events: none;
}

.bl-nh__menu .sub-menu a:hover,
.bl-nh__menu .sub-menu a:focus-visible {
  background: rgba(159, 202, 58, 0.12);
  color: var(--bl-green);
  outline: none;
}

/* ── Right: CTA Button + Search ─────────────────────────────────────────── */
/* Gap between the last nav item and the actions cluster */
.bl-nh__actions {
  display: flex;
  align-items: center;
  gap: 12px; /* space between button and search icon */
  flex-shrink: 0;
  margin-left: 20px; /* breathing room from last nav item */
}

/* CTA — black pill button */
.bl-nh__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000 !important;
  color: #ffffff !important;
  font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 13px 28px;
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid #000000 !important;
  transition:
    background var(--bl-ease),
    color var(--bl-ease),
    border-color var(--bl-ease);
}

.bl-nh__cta-btn:hover,
.bl-nh__cta-btn:focus-visible {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
  outline: none;
}

/* Search icon toggle */
.bl-nh__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #111111;
  border-radius: 4px;
  transition:
    color var(--bl-ease),
    background var(--bl-ease);
  line-height: 1;
}

.bl-nh__search-toggle:hover,
.bl-nh__search-toggle:focus-visible {
  color: #111111;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

.bl-nh__search-toggle[aria-expanded="true"] {
  background: rgba(0, 0, 0, 0.12);
}

/* ── Mobile Hamburger ────────────────────────────────────────────────────── */
.bl-nh__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.bl-nh__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.bl-nh__burger span {
  display: block;
  height: 2px;
  background: var(--bl-black);
  border-radius: 2px;
  transition:
    transform var(--bl-ease),
    opacity var(--bl-ease);
  transform-origin: center;
}

.bl-nh__toggle[aria-expanded="true"] .bl-nh__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.bl-nh__toggle[aria-expanded="true"] .bl-nh__burger span:nth-child(2) {
  opacity: 0;
}
.bl-nh__toggle[aria-expanded="true"] .bl-nh__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Search Bar (drops below nav bar) ──────────────────────────────────── */
.bl-nh__search-bar {
  background: var(--bl-white);
  border-top: 2px solid var(--bl-green);
}

.bl-nh__search-bar[hidden] {
  display: none;
}

.bl-nh__search-inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
}

.bl-nh__search-inner form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bl-nh__search-input {
  flex: 1;
  background: var(--bl-white);
  border: 1px solid var(--bl-grey-mid);
  border-radius: var(--bl-radius);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  color: var(--bl-text);
  outline: none;
  transition:
    border-color var(--bl-ease),
    background var(--bl-ease);
}

.bl-nh__search-input::placeholder {
  color: var(--bl-text-muted);
}

.bl-nh__search-input:focus {
  border-color: var(--bl-green);
  background: var(--bl-white);
}

.bl-nh__search-submit,
.bl-nh__search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bl-black);
  padding: 0.35rem;
  border-radius: var(--bl-radius);
  transition: color var(--bl-ease);
}

.bl-nh__search-submit:hover,
.bl-nh__search-close:hover {
  color: var(--bl-green);
}

.bl-nh__search-submit {
  background: var(--bl-green);
  color: var(--bl-black);
  padding: 0.45rem 0.75rem;
  border-radius: var(--bl-radius);
}

.bl-nh__search-submit:hover {
  background: var(--bl-green-dark);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.bl-new-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--bl-dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bl-new-hero--has-bg {
  min-height: min(92vh, 720px);
}

.bl-new-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

section.bl-new-hero .bl-new-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bl-new-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(12, 18, 14, 0.88) 0%,
      rgba(20, 28, 22, 0.72) 38%,
      rgba(30, 38, 32, 0.45) 62%,
      rgba(40, 48, 42, 0.28) 100%
    ),
    radial-gradient(
      ellipse 120% 80% at 20% 50%,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 55%
    );
}

.bl-new-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--bl-container);
  margin: 0 auto;
  width: 100%;
}

.bl-new-hero__content {
  max-width: 640px;
  text-align: left;
}

.bl-new-hero__badge {
  display: inline-block;
  margin: 0 0 1rem;
}

.bl-new-hero__badge span {
  display: inline-block;
  background: var(--bl-green);
  color: var(--bl-black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.bl-new-hero__title {
  font-family: "Bebas Neue", "Bebas", "Impact", sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0 0 1.5rem;
  line-height: 80%;
  letter-spacing: 0.75px !important;
  margin-bottom: 24px !important;
}

.bl-new-hero__title .accent,
.bl-new-hero__title .bl-green {
  color: var(--bl-green) !important;
}

.bl-new-hero__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bl-green);
  margin: -0.5rem 0 1rem;
  line-height: 1.35;
}

.bl-new-hero__description {
  font-family: "Avenir Roman", "Avenir", var(--bl-font-body);
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.4;
  padding-bottom: 0;
}

.bl-new-hero__description p {
  margin: 0 0 24px;
  padding-bottom: 0;
}

.bl-new-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORGANIZATIONS / PARTNERS  — black strip, centered heading + logo row
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-org__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  text-align: center;
}

.bl-new-org__title {
  font-family: "Avenir Roman", "Avenir", var(--bl-font-body) !important;
  font-weight: 400 !important;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff !important;
  max-width: 52rem;
  margin: 0 auto;
  margin-bottom: 20px;
}

.bl-new-org__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: 1.5rem;
}

.bl-new-org__item {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl-new-org__link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition:
    opacity var(--bl-ease),
    transform var(--bl-ease);
}

.bl-new-org__link:hover,
.bl-new-org__link:focus-visible {
  opacity: 0.88;
  outline: none;
  transform: translateY(-1px);
}

.bl-new-org__link--static {
  cursor: default;
}

.bl-new-org__logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 90px;
  max-width: min(200px, 28vw);
  object-fit: contain;
}

@media (max-width: 680px) {
  .bl-new-org__list {
    gap: 1.25rem 1.75rem;
  }

  .bl-new-org__logo {
    max-height: 68px;
    max-width: 42vw;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHO WE ARE  — white band, two columns (copy | image)
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-wwa__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-wwa__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(2rem, 5vw, 4.25rem);
  row-gap: 2.5rem;
}

/* Left column */
.bl-new-wwa__col--content {
  padding-top: 0.125rem;
}

.bl-new-wwa__body {
  font-family: "Avenir Roman", "Avenir", var(--bl-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #111111 !important;
  max-width: 40rem;
}

/* In-body links — lime + underline (matches comp) */
.bl-new-wwa__body a {
  color: #9fca3a !important;
  text-decoration: underline !important;
  text-underline-offset: 0.15em;
  font-weight: 600;
  transition:
    color var(--bl-ease),
    opacity var(--bl-ease);
}

.bl-new-wwa__body a:hover,
.bl-new-wwa__body a:focus-visible {
  color: #7daa20 !important;
  outline: none;
}

.bl-new-wwa__actions {
  margin-top: 24px;
}

/* Right column — square crop, aligns top with copy */
.bl-new-wwa__col--media {
  position: relative;
  height: 100%;
}

.bl-new-wwa__figure {
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8e8e8;
  height: 100%;
}

.bl-new-wwa__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .bl-new-wwa__grid {
    grid-template-columns: 1fr;
  }

  .bl-new-wwa__col--media {
    order: -1;
  }

  .bl-new-wwa__figure {
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }

  .bl-new-wwa__headline {
    max-width: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US  — black section, 3 cards, lime accents
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-wcu__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-wcu__grid {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.bl-new-wcu__card {
  background: #1a1a1a !important;
  border-radius: 2px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bl-new-wcu__icon-wrap {
  color: #9fca3a;
  margin: 0 0 24px;
  line-height: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.bl-new-wcu__icon-svg {
  display: block;
  width: 56px;
  height: 56px;
}

/* Uploaded icon (PNG/SVG from Media Library) */
.bl-new-wcu__icon-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.bl-new-wcu__card-text {
  font-family: "Avenir Roman", "Avenir", var(--bl-font-body);
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff !important;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.bl-new-wcu__actions {
  margin-top: 48px;
  text-align: center;
  padding-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .bl-new-wcu__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEAM  — white section: heading, tagline, intro + circular nav; then carousel
   ═══════════════════════════════════════════════════════════════════════════ */
.bl-new-team__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-team__intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  position: relative;
}

.bl-new-team__intro-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, 750px);
}

.bl-new-team__tagline {
  font-family: var(--bl-font-body);
  font-size: clamp(1.05rem, 1.9vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--bl-black);
  margin: 0.5rem 0 0;
  padding: 0;
  max-width: 40rem;
}

.bl-new-team__viewport {
  width: 100%;
}

@media (max-width: 782px) {
  .bl-new-team__intro {
    flex-direction: column;
    align-items: stretch;
  }

  .bl-new-team__intro-text {
    max-width: 100%;
    padding-right: 0;
  }

  .bl-new-team__intro-nav {
    position: static;
    align-self: flex-end;
    margin-top: 1rem;
  }
}

.bl-new-team__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0 0 0.25rem;
  list-style: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: default;
}

.bl-new-team__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.bl-new-team__slide {
  flex: 0 0 auto;
  width: clamp(12rem, 24vw, 19rem);
  max-width: 100%;
}

.bl-new-team__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  color: var(--bl-black);
  border: none;
}

.bl-new-team__photo-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
}

.bl-new-team__photo-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  outline-offset: 2px;
}

.bl-new-team__photo-link:focus-visible {
  outline: 2px solid var(--bl-green);
}

.bl-new-team__photo-link:hover .bl-new-team__photo,
.bl-new-team__photo-link:focus-visible .bl-new-team__photo {
  opacity: 0.92;
}

.bl-new-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: transparent;
  transition: opacity var(--bl-ease);
}

.bl-new-team__body {
  padding: 24px 0 0;
  text-align: left;
  flex-grow: 1;
}

.bl-new-team__name-prefix {
  color: var(--bl-black);
}

.bl-new-team__name-last {
  color: var(--bl-green);
}

.bl-new-team__location {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-family: var(--bl-font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bl-black);
  margin: 0.85rem 0 0;
  padding: 0;
}

.bl-new-team__pin {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--bl-black);
  line-height: 0;
}

.bl-new-team__pin svg {
  display: block;
}

@media (max-width: 640px) {
  .bl-new-team__slide {
    width: clamp(11rem, 46vw, 16rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW WE HANDLE CASE  — light band: contained image | timeline + CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-hwh__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 0;
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-hwh--no-media .bl-new-hwh__grid {
  grid-template-columns: 1fr;
}

/* Left: image contained, column height matches right via grid stretch */
.bl-new-hwh__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  background: transparent;
  overflow: hidden;
}

.bl-new-hwh__media-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
}

.bl-new-hwh__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.bl-new-hwh__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 3.25rem);
  background: transparent;
  max-width: none;
}

.bl-new-hwh__timeline {
  position: relative;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* Vertical rule — between first and last icon centers */
.bl-new-hwh__timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 1px;
  background: #cccccc;
  transform: translateX(-50%);
}

.bl-new-hwh__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.35rem 1.25rem;
  align-items: start;
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 !important;
}

.bl-new-hwh__step:last-child {
  padding-bottom: 0;
}

.bl-new-hwh__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--bl-green);
}

.bl-new-hwh__icon-svg {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.bl-new-hwh__icon-img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.bl-new-hwh__step-body {
  min-width: 0;
}

.bl-new-hwh__step-title,
.bl-new-bcf__q,
.bl-new-nb__card-title {
  font-family: "Avenir" !important;
  font-size: 24px;
  font-weight: 800 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  color: #000000 !important;
  margin: 0 0 16px;
  padding: 0;
}

.bl-new-nb__card-title {
  font-size: 18px;
  color: #fff !important;
}

.bl-new-bcf__q {
  font-size: 18px;
  flex: 1 1 auto;
  margin: 0;
}

.bl-new-pa__label {
  position: absolute;
  left: 9%;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-family: "Avenir" !important;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff !important;
  max-width: 180px;
  padding-bottom: 24px;
}

.bl-new-hwh__actions {
  margin-top: 0;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .bl-new-hwh__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bl-new-hwh__media {
    order: -1;
    min-height: 14rem;
    max-height: min(55vh, 24rem);
  }

  .bl-new-hwh__media-inner {
    min-height: 12rem;
    max-height: min(55vh, 24rem);
  }

  .bl-new-hwh__img {
    max-height: min(55vh, 24rem);
  }

  .bl-new-hwh__panel {
    max-width: 100%;
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRACTICE AREAS  — black strip, flush image grid, bottom labels
   ═══════════════════════════════════════════════════════════════════════════ */
.bl-new-pa {
  background: #000000 !important;
  color: #ffffff;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.bl-new-pa__head {
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.bl-new-pa__title {
  font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0 auto;
  padding: 0;
  max-width: 22em;
}

.bl-new-pa__strip.bl-new-pa__strip {
  width: 100%;
  max-width: var(--bl-container);
  margin: 48px auto;
  overflow: hidden;
  background: #000000;
}

.bl-new-pa__grid {
  --bl-pa-cols: 6;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(var(--bl-pa-cols), minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: clamp(24rem, 52vh, 44rem);
}

.bl-new-pa__cell {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0;
}

.bl-new-pa__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(24rem, 52vh, 44rem);
  height: 100%;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  outline-offset: 2px;
}

.bl-new-pa__card:focus-visible {
  outline: 2px solid var(--bl-green);
}

.bl-new-pa__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
  image-rendering: auto;
}

.bl-new-pa__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.55) 42%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.bl-new-pa__card:hover .bl-new-pa__img {
  transform: scale(1.03);
}

.bl-new-pa__foot {
  max-width: var(--bl-container);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

.bl-new-pa__explore-wrap {
  margin-top: 1.5rem;
}

.bl-new-pa__foot .bl-new-pa__explore-wrap:first-child {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .bl-new-pa__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bl-new-pa__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .bl-new-pa__grid {
    grid-template-columns: 1fr;
    min-height: clamp(18rem, 42vh, 32rem);
  }

  .bl-new-pa__card {
    min-height: clamp(18rem, 42vh, 32rem);
  }

  .bl-new-pa__explore {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    padding-inline: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-new-pa__img {
    transition: none;
  }
  .bl-new-pa__card:hover .bl-new-pa__img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMMUNITY INVOLVEMENT  — carousel, up to 10 partner slides
   ═══════════════════════════════════════════════════════════════════════════ */
.bl-new-ci__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  position: relative;
}

.bl-new-ci__intro {
  position: relative;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.bl-new-ci__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.bl-new-ci__viewport {
  width: 100%;
}

.bl-new-ci__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0 0 0.35rem;
  list-style: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: default;
}

.bl-new-ci__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.bl-new-ci__slide {
  flex: 0 0 auto;
  width: clamp(260px, 34vw, 400px);
  max-width: min(94vw, 420px);
}

.bl-new-ci--no-scroll .bl-new-ci__nav[hidden],
.bl-new-ci__nav[hidden] {
  display: none !important;
}

.bl-new-ci__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.bl-new-ci__figure {
  margin: 0 0 1.125rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e8e8;
  line-height: 0;
}

.bl-new-ci__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
}

.bl-new-ci__body {
  font-family: var(--bl-font-body);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: #000000;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 38rem;
}

.bl-new-ci__body p {
  margin: 0 0 0.75rem;
}

.bl-new-ci__body p:last-child {
  margin-bottom: 0;
}

.bl-new-ci__actions {
  margin-top: 1.5rem;
  width: 100%;
}

.bl-new-ci__cta--static {
  cursor: default;
}

@media (max-width: 720px) {
  .bl-new-ci__intro {
    margin-bottom: 1.25rem;
  }

  .bl-new-ci__nav {
    justify-content: center;
    margin-top: 1rem;
  }

  .bl-new-ci__slide {
    width: min(340px, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-new-ci__cta--static {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS  — light grey, 3-up cards, black nav pills, CPT content
   Card UI matches comp: Montserrat, olive accent #718e1d, generous vertical rhythm
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-tst__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  position: relative;
}

.bl-new-tst__nav,
.bl-new-team__intro-nav,
.bl-new-ci__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  position: absolute;
  right: 0;
  top: 12px;
}

.bl-new-team__intro-nav {
  top: unset !important;
  bottom: -25px !important;
}

@media (max-width: 720px) {
  .bl-new-ci__nav,
  .bl-new-team__intro-nav {
    position: relative !important;
  }
}

.bl-new-tst__arrow,
.bl-new-team__arrow,
.bl-new-ci__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  transition:
    opacity var(--bl-ease),
    transform var(--bl-ease),
    background var(--bl-ease);
}

.bl-new-tst__arrow:hover:not(:disabled),
.bl-new-tst__arrow:focus-visible:not(:disabled),
.bl-new-team__arrow:hover:not(:disabled),
.bl-new-team__arrow:focus-visible:not(:disabled),
.bl-new-ci__arrow:hover:not(:disabled),
.bl-new-ci__arrow:focus-visible:not(:disabled) {
  opacity: 1;
  outline: none;
  transform: scale(1.04);
  background: #2a2a2a;
}

.bl-new-tst__arrow:focus-visible,
.bl-new-team__arrow:focus-visible,
.bl-new-ci__arrow:focus-visible {
  box-shadow:
    0 0 0 2px var(--bl-grey-light),
    0 0 0 4px var(--tst-accent, #718e1d);
}

.bl-new-tst__arrow:disabled,
.bl-new-team__arrow:disabled,
.bl-new-ci__arrow:disabled {
  cursor: default;
  transform: none;
}

.bl-new-tst__arrow-icon,
.bl-new-team__arrow-icon,
.bl-new-ci__arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.bl-new-tst__viewport {
  width: 100%;
}

.bl-new-tst__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0 0 0.25rem;
  list-style: none !important;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: default;
}

.bl-new-tst__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.bl-new-tst__slide {
  flex: 0 0 auto;
  width: calc((100% - 2.5rem) / 3);
  min-width: 0;
}

.bl-new-tst__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-height: 100%;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #a4a2a3;
  box-sizing: border-box;
  text-align: left;
}

.bl-new-tst__stars {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem;
  margin: 0 0 24px;
  line-height: 1;
  font-size: 22px;
}

.bl-new-tst__star {
  color: #d5d5d5;
}

.bl-new-tst__star.is-active {
  color: var(--tst-accent);
}

/* Collapsed: excerpt + Read more (compact stack; large gap before name is on .bl-new-tst__client) */
.bl-new-tst__short {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
}

.bl-new-tst__short .bl-new-tst__excerpt {
  flex-grow: 0;
}

.bl-new-tst__read:hover,
.bl-new-tst__read:focus-visible {
  color: var(--tst-accent-hover) !important;
  text-decoration: underline !important;
  outline: none;
}

/* Expanded: only full text + Read less at bottom (excerpt block hidden) */
.bl-new-tst__full {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  max-width: 100%;
}

.bl-new-tst__full[hidden] {
  display: none !important;
}

.bl-new-tst__full .bl-new-tst__read--less {
  margin: 0.75rem 0 0;
  align-self: flex-start;
}

.bl-new-tst__sub {
  font-family: var(--tst-font);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bl-text-muted);
  margin: 0.35rem 0 0;
  padding: 0;
}

.bl-new-tst__foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

@media (max-width: 900px) {
  .bl-new-tst__slide {
    width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .bl-new-tst__head {
    flex-direction: column;
    align-items: stretch;
  }

  .bl-new-tst__title {
    text-align: center;
  }

  .bl-new-tst__nav {
    justify-content: center;
  }

  .bl-new-tst__slide {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-new-tst__arrow,
  .bl-new-team__arrow,
  .bl-new-ci__arrow {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BICYCLE CRASH FAQ  — white, 1/3 intro + 2/3 accordion, lime CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-bcf__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-bcf__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 80px;
  align-items: start;
}

.bl-new-bcf__intro {
  max-width: 500px;
}

.bl-new-bcf__sub {
  font-family: var(--bl-font-body);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--bcf-text);
  margin: 0 0 1.75rem;
  padding: 0;
}

.bl-new-bcf__actions {
  margin: 0;
}

.bl-new-bcf__cta--static {
  cursor: default;
}

.bl-new-bcf__acc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
}

.bl-new-bcf__item {
  margin: 0;
  padding: 0;
  border: 1px solid #a4a2a3;
  background: #ffffff;
  overflow: hidden;
}

.bl-new-bcf__summary {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--bl-font-body);
  color: var(--bcf-text);
  transition: background var(--bl-ease);
}

.bl-new-bcf__summary::-webkit-details-marker {
  display: none;
}

.bl-new-bcf__summary::marker {
  display: none;
}

.bl-new-bcf__item[open] .bl-new-bcf__summary {
  background: #fff;
}

.bl-new-bcf__toggle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  margin: 0.1rem 0 0;
  line-height: 1;
  text-align: center;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--bcf-text);
}

.bl-new-bcf__toggle::before {
  content: "+";
  display: block;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 800;
}

.bl-new-bcf__item[open] .bl-new-bcf__toggle::before {
  content: "\00d7";
}

.bl-new-bcf__summary:focus-visible {
  outline: 2px solid var(--bcf-cta);
  outline-offset: 2px;
}

.bl-new-bcf__panel {
  padding: 0 1.35rem 1.35rem;
}

.bl-new-bcf__answer > *:first-child {
  margin-top: 0;
}

.bl-new-bcf__answer > *:last-child {
  margin-bottom: 0;
}

.bl-new-bcf__answer ul {
  list-style: disc;
}

@media (max-width: 960px) {
  .bl-new-bcf__grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
  }

  .bl-new-bcf__intro {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-new-bcf__cta--static {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWS & BLOGS  — lime band + title/pill, white band, 3 square image tiles
   ═══════════════════════════════════════════════════════════════════════════ */

.bl-new-nb__band {
  background: #9fca3a;
  position: relative;
  padding: 113px 1.5rem;
  height: 405px;
}

.bl-new-nb__band-inner {
  max-width: var(--bl-container);
  margin: 0 auto;
}

.bl-new-nb__head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.bl-new-nb__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #ffffff !important;
  font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 250px;
  transition:
    background var(--bl-ease),
    color var(--bl-ease),
    transform var(--bl-ease),
    box-shadow var(--bl-ease);
}

.bl-new-nb__pill:hover,
.bl-new-nb__pill:focus-visible {
  background: #2a2a2a !important;
  border-color: #2a2a2a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  outline: none;
}

.bl-new-nb__below {
  background: #ffffff;
  padding: 0 1.5rem clamp(3rem, 6vw, 5rem);
}

.bl-new-nb__below-inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  margin-top: -180px;
}

.bl-new-nb__grid {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.bl-new-nb__cell {
  margin: 0 !important;
  padding: 0 !important;
}

.bl-new-nb__card {
  height: 100%;
  margin: 0;
}

.bl-new-nb__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: #ffffff !important;
  text-decoration: none !important;
  outline-offset: 2px;
}

img.bl-new-nb__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}

.bl-new-nb__media--placeholder {
  position: absolute;
  inset: 0;
  display: block;
  background-color: #2a2a2a;
  background: linear-gradient(145deg, #3d3d3d 0%, #1a1a1a 100%);
  transition: transform 0.45s ease;
}

.bl-new-nb__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

.bl-new-nb__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 48px 40px;
}

.bl-new-nb__rule {
  display: block;
  width: 80px;
  height: 2px;
  background: #ffffff;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.bl-new-nb__excerpt {
  flex: 1 1 auto;
  font-family: var(--bl-font-body);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95) !important;
  margin: 0 0 1.25rem;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-new-nb__more {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
  font-family: "Bebas";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff !important;
}

.bl-new-nb__more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 0;
  flex-shrink: 0;
}

.bl-new-nb__more-icon svg {
  display: block;
}

.bl-new-nb__card-link:hover img.bl-new-nb__media,
.bl-new-nb__card-link:focus-visible img.bl-new-nb__media,
.bl-new-nb__card-link:hover .bl-new-nb__media--placeholder,
.bl-new-nb__card-link:focus-visible .bl-new-nb__media--placeholder {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .bl-new-nb__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bl-new-nb__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-new-nb__pill {
    align-self: flex-start;
  }

  .bl-new-nb__grid {
    grid-template-columns: 1fr;
  }

  .bl-new-nb__below-inner {
    margin-top: clamp(-3rem, -8vw, -4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  img.bl-new-nb__media,
  .bl-new-nb__media--placeholder,
  .bl-new-nb__pill {
    transition: none;
  }
  .bl-new-nb__card-link:hover img.bl-new-nb__media,
  .bl-new-nb__card-link:focus-visible img.bl-new-nb__media,
  .bl-new-nb__card-link:hover .bl-new-nb__media--placeholder,
  .bl-new-nb__card-link:focus-visible .bl-new-nb__media--placeholder {
    transform: none;
  }
}

/* ─── Main ────────────────────────────────────────────────────────────────── */
.bl-new-main {
  outline: none;
}

/* Inner pages (non-homepage) using site-wide new chrome */
.bl-new-layout:not(.page-template-template-homepage-new) .container-wrap {
  padding-top: 0 !important;
  margin-top: 0;
}

.bl-new-layout:not(.page-template-template-homepage-new) #footer-outer,
.bl-new-layout:not(.page-template-template-homepage-new) .nectar-global-section.before-footer {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — lime panel, black type (comp)
   ══════════════════════════════════════════════════════════════════════════ */

.bl-new-footer__shell {
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: 24px 0 5px 0;
}

/* Disclaimer — title + chevron inline; open = ^ , closed = v */
.bl-new-footer__disclaimer {
  margin: 0;
  padding: 0;
  border: none;
}

.bl-new-footer__disclaimer-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 0 0.25rem;
  margin: 0;
  font-family: var(--bl-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bl-footer-ink);
}

.bl-new-footer__disclaimer-summary::-webkit-details-marker {
  display: none;
}

.bl-new-footer__disclaimer-title {
  letter-spacing: 0.01em;
}

.bl-new-footer__disclaimer-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--bl-footer-ink);
  border-bottom: 2px solid var(--bl-footer-ink);
  transform: rotate(-135deg);
  margin-top: 10px;
  transition: transform var(--bl-ease);
}

.bl-new-footer__disclaimer:not([open]) .bl-new-footer__disclaimer-chevron {
  transform: rotate(45deg);
  margin-top: 0 !important;
}

.bl-new-footer__disclaimer-body {
  padding: 0.65rem 0 0;
  margin: 0;
}

.bl-new-footer__disclaimer-body p {
  font-size: 0.8125rem;
  line-height: 1.62;
  font-weight: 400;
  color: var(--bl-footer-ink);
  margin: 0;
  max-width: 70rem;
}

.bl-new-footer__rule {
  height: 1px;
  background: var(--bl-footer-rule);
  margin: 0;
  border: none;
  padding: 0;
}

/* Footer nav — four columns between disclaimer and offices */
.bl-new-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 2rem 0 2.25rem;
}

.bl-new-footer__nav-col {
  min-width: 0;
}

/* Column titles — match footer eyebrow weight (Bebas), stronger than link text */
.bl-new-footer__nav-heading {
  margin: 0 0 0.85rem;
  font-family: "Bebas", var(--bl-font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bl-footer-ink);
}

/* Strip theme / UA list bullets from wp_nav_menu output */
.bl-new-footer__nav-col ul,
.bl-new-footer__nav-col ol,
.bl-new-footer__nav-list {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-new-footer__nav-col li,
.bl-new-footer__nav-list li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 0 0.55rem;
  padding: 0 !important;
  background: none !important;
}

.bl-new-footer__nav-col li:last-child,
.bl-new-footer__nav-list li:last-child {
  margin-bottom: 0;
}

.bl-new-footer__nav-col li::before,
.bl-new-footer__nav-col li::after,
.bl-new-footer__nav-list li::before,
.bl-new-footer__nav-list li::after {
  display: none !important;
  content: none !important;
}

.bl-new-footer__nav-list .bl-new-footer__text-link {
  display: inline;
  font-size: 0.875rem;
  line-height: 1.45;
}

/* Offices — CA/OR large word with label stacked underneath (comp) */
.bl-new-footer__offices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: start;
  margin: 70px 0;
}

.bl-new-footer__office-col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
  align-items: flex-start;
  min-width: 0;
}

.bl-new-footer__region-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 0 0 1.5rem;
  flex-shrink: 0;
}

.bl-new-footer__region-code,
.bl-new-footer__region-label,
.bl-new-footer__eyebrow {
  font-family: "Bebas";
  font-size: 50px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.bl-new-footer__region-label,
.bl-new-footer__eyebrow {
  font-size: 18px;
  line-height: 32px;
  margin-top: 5px;
}

.bl-new-footer__address-block {
  margin: 0 0 1.4rem;
  min-width: 0;
  flex: 0 1 auto;
}

.bl-new-footer__address-block:last-child {
  margin-bottom: 0;
}

.bl-new-footer__addr-line {
  margin: 0 0 0.15rem;
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  padding-bottom: 0;
  overflow-wrap: anywhere;
}

.bl-new-footer__addr-line strong {
  font-weight: 700 !important;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
}

/* Bottom tier */
.bl-new-footer__bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin: 70px 0;
}

.bl-new-footer__contact .bl-new-footer__phone,
.bl-new-footer__contact .bl-new-footer__email {
  display: block;
  font-family: "Avenir";
  font-size: 23px;
  font-weight: 700;
  line-height: 36px;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 10px;
  margin: 0px 0 32px;
  letter-spacing: 0.5px;
}

.bl-new-footer__contact .bl-new-footer__phone:hover,
.bl-new-footer__contact .bl-new-footer__phone:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: var(--bl-footer-ul);
  text-underline-offset: 3px;
}

.bl-new-footer__contact .bl-new-footer__email:hover,
.bl-new-footer__contact .bl-new-footer__email:focus-visible {
  opacity: 0.88;
}

.bl-new-footer__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1.65rem, 2.75vw, 2.35rem);
}

.bl-new-footer__social {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.bl-new-footer__social-item {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none !important;
}

/* Comp: small black square before each network name */
.bl-new-footer__social-item::before {
  content: "";
  display: none;
  width: 11px;
  height: 11px;
  background: var(--bl-footer-ink);
  flex-shrink: 0;
}

.bl-new-footer__brand-list li {
  list-style: none;
}

.bl-new-footer__text-link,
.bl-new-footer__text-static {
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.35;
  color: #000 !important;
  text-decoration: underline;
  text-decoration-thickness: var(--bl-footer-ul);
  text-underline-offset: 3px;
  transition: opacity var(--bl-ease);
}

.bl-new-footer__text-link:hover,
.bl-new-footer__text-link:focus-visible,
.bl-new-footer__text-static:hover,
.bl-new-footer__text-static:focus-visible {
  opacity: 0.82;
}

.bl-new-footer__newsletter {
  margin: 0;
}

.bl-new-footer__brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.85rem;
  align-items: center;
}

.bl-new-footer__brand-list li {
  margin: 0;
  padding: 0;
}

/* Site footer wrapper (lime + dark socket) */
.bl-new-site-footer {
  margin: 0;
  padding: 0;
}

/* ─── Footer socket (bottom bar) ─────────────────────────────────────────── */
.bl-new-footer-socket {
  background: var(--bl-dark);
  color: #a8a8a8;
  font-family: var(--bl-font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.bl-new-footer-socket__inner {
  max-width: var(--bl-container);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: 1rem;
}

.bl-new-footer-socket__copy {
  margin: 0;
  padding: 0;
  justify-self: center;
  text-align: center;
  font-size: inherit;
  font-weight: 400;
  color: #a8a8a8;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.bl-new-footer-socket__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  gap: 0.75rem 1.25rem;
}

.bl-new-footer-socket__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.bl-new-footer-socket__menu-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.bl-new-footer-socket__menu-item:not(:last-child)::after {
  content: "|";
  color: #a8a8a8;
  font-weight: 400;
  padding: 0 0.15rem;
}

.bl-new-footer-socket__menu-item::before,
.bl-new-footer-socket__menu-item::after {
  background: none !important;
}

.bl-new-footer-socket__link {
  color: #a8a8a8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color var(--bl-ease);
}

.bl-new-footer-socket__link:hover,
.bl-new-footer-socket__link:focus-visible {
  color: #f0f0f0;
}

.bl-new-footer-socket__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.bl-new-footer-socket__sep {
  color: #a8a8a8;
  font-weight: 400;
  user-select: none;
  padding: 0 0.15rem;
}

.bl-new-footer-socket__cta,
.bl-new-footer-socket__cta-spacer {
  justify-self: end;
}

.bl-new-footer-socket__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.4rem;
  background: var(--bl-green) !important;
  color: var(--bl-black) !important;
  font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 13px 28px;
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid var(--bl-green) !important;
  transition:
    background var(--bl-ease),
    color var(--bl-ease),
    border-color var(--bl-ease);
}

.bl-new-footer-socket__cta:hover,
.bl-new-footer-socket__cta:focus-visible {
  background: var(--bl-green-dark) !important;
  border-color: var(--bl-green-dark) !important;
  color: var(--bl-black) !important;
  outline: none;
}

.bl-new-footer-socket__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.bl-new-footer-socket__cta-arrow {
  font-family: var(--bl-font-body);
  font-size: 1.05em;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

/* Tablet — tighten padding only; keep Bebas 18px spec intact */
@media (max-width: 1200px) {
  .bl-nh__menu > li > a {
    padding: 0 0.4rem;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .bl-nh__cta-btn {
    font-size: 14px;
    padding: 11px 20px;
    letter-spacing: 1px;
  }

  .bl-nh__actions {
    gap: 8px;
    margin-left: 12px;
  }

  /* Reduce utility gap on smaller viewports */
  .bl-nh__util-list {
    gap: 48px;
  }
}

@media (max-width: 1200px) {
  .bl-new-footer__office-col {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .bl-new-footer__office-col .bl-new-footer__region-head {
    margin-bottom: 0.25rem;
  }

  .bl-new-footer__office-col .bl-new-footer__address-block {
    margin-bottom: 1rem;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .bl-nh__util-list {
    gap: 32px;
  }

  .bl-new-footer__nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .bl-new-footer__offices {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin: 2.5rem 0;
  }

  .bl-new-footer__bottom-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bl-new-footer-socket__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .bl-new-footer-socket__nav {
    justify-content: center;
    justify-self: center;
  }

  .bl-new-footer-socket__copy {
    justify-self: center;
    white-space: normal;
  }

  .bl-new-footer-socket__cta,
  .bl-new-footer-socket__cta-spacer {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .bl-new-footer__nav-grid {
    grid-template-columns: 1fr;
  }

  .bl-new-footer__offices {
    margin: 2rem 0;
    gap: 2rem;
  }

  .bl-new-footer__office-col .bl-new-footer__region-code {
    font-size: 42px;
    line-height: 1;
  }

  .bl-new-footer__office-col .bl-new-footer__region-label {
    font-size: 16px;
    line-height: 1.4;
  }

  .bl-new-footer__office-col .bl-new-footer__addr-line,
  .bl-new-footer__office-col .bl-new-footer__addr-line strong {
    font-size: 18px;
    line-height: 1.45;
  }
}

/* Mobile nav breakpoint — collapse to hamburger */
@media (max-width: 960px) {
  .bl-nh__primary-nav {
    position: fixed;
    top: calc(var(--bl-util-h) + var(--bl-nav-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bl-black);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .bl-nh__primary-nav.is-open {
    transform: translateX(0);
  }

  .bl-nh__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .bl-nh__menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .bl-nh__menu > li > a {
    height: auto;
    padding: 0.85rem 0;
    font-family: "Bebas", "Bebas Neue", "Impact", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.75px;
    color: var(--bl-white) !important;
  }

  .bl-nh__menu > li > a:hover,
  .bl-nh__menu > li > a:focus-visible {
    color: var(--bl-green);
    background: none;
  }

  .bl-nh__menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-top: none;
    border-left: 3px solid var(--bl-green);
    padding: 0.25rem 0 0.25rem 1rem;
    margin-bottom: 0.5rem;
    z-index: auto;
  }

  .bl-nh__toggle {
    display: flex;
  }

  .bl-nh__actions .bl-nh__cta-btn {
    display: none;
  }

  .bl-nh__nav-inner {
    justify-content: space-between;
  }
}

/* ─── Report a crash — black / grey split + Gravity Form ─────────────────── */
/* Full-bleed row: grey base to the right edge (no black gutter); black only on left track. */
.bl-new-rc {
  width: 100%;
  background: #000;
}

.bl-new-rc__inner {
  width: 100%;
  max-width: var(--bl-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  min-height: 0;
  align-items: stretch;
}

.bl-new-rc__col--copy {
  background: #000000;
  padding: 112px 50px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bl-new-rc__link {
  color: var(--bl-green) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--bl-ease);
}

.bl-new-rc__link:hover,
.bl-new-rc__link:focus-visible {
  color: var(--bl-green-dark) !important;
}

.bl-new-rc__col--form {
  background: #f2f2f2;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 100%;
  box-sizing: border-box;
}

.bl-new-rc__form-inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

.bl-new-rc__editor-hint {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555555;
}

/* Gravity Forms — match comp (labels above, white fields, pill submit) */
.bl-new-rc .gform_wrapper {
  margin: 0;
  padding: 0;
  color: #000;
}

.bl-new-rc .gform_wrapper .gform_heading,
.bl-new-rc .gform_wrapper .gform_title {
  display: none !important;
}

.bl-new-rc .gform_wrapper .gform_description {
  display: none !important;
}

.bl-new-rc ul.gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.35rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bl-new-rc ul.gform_fields > li.gfield {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Full-width rows (textarea, checkbox, consent, section, etc.) */
.bl-new-rc li.gfield.gf_left_half,
.bl-new-rc li.gfield.gf_right_half {
  grid-column: span 1;
}

.bl-new-rc
  li.gfield:not(.gf_left_half):not(.gf_right_half):not(.gf_left_third):not(
    .gf_middle_third
  ):not(.gf_right_third),
.bl-new-rc li.gfield--type-textarea,
.bl-new-rc li.gfield--type-checkbox,
.bl-new-rc li.gfield--type-consent,
.bl-new-rc li.gfield--type-html,
.bl-new-rc li.gfield--type-section,
.bl-new-rc li.gfield--type-name,
.bl-new-rc li.gfield--width-full {
  grid-column: 1 / -1;
}

.bl-new-rc li.gfield--width-half {
  grid-column: span 1;
}

.bl-new-rc .gfield_label,
.bl-new-rc .gform_wrapper legend.gfield_label,
.bl-new-footer__disclaimer-title,
.bl-new-tst__headline,
.bl-new-tst__name {
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #000 !important;
  margin: 10px 0 6px 0 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}

.bl-new-tst__headline {
  font-size: 20px !important;
}

.bl-new-footer__disclaimer-title {
  margin: 0 !important;
}

.bl-new-rc .gfield_required {
  color: #111111;
}

.bl-new-rc .ginput_container {
  margin: 0;
}

.bl-new-rc input[type="text"],
.bl-new-rc input[type="email"],
.bl-new-rc input[type="tel"],
.bl-new-rc input[type="url"],
.bl-new-rc input[type="number"],
.bl-new-rc input[type="date"],
.bl-new-rc select,
.bl-new-rc textarea {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #a4a2a3 !important;
  padding: 12px !important;
  font-family: "Avenir" !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #000 !important;
  transition: border-color var(--bl-ease);
}

.bl-new-rc input:focus,
.bl-new-rc select:focus,
.bl-new-rc textarea:focus {
  outline: none;
  border-color: var(--bl-green-dark);
  box-shadow: 0 0 0 1px rgba(159, 202, 58, 0.35);
}

.bl-new-rc textarea {
  height: 180px !important;
  resize: vertical;
}

.bl-new-rc .gfield_checkbox label,
.bl-new-rc .gfield_consent label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.45;
}

.bl-new-rc .gfield_checkbox input[type="checkbox"],
.bl-new-rc .gfield_consent input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: var(--bl-green-dark);
}

.bl-new-rc .gform_footer {
  margin: 1.1rem 0 0;
  padding: 0;
  border: none;
}

.bl-new-rc .gform_footer input[type="submit"] {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bl-green) !important;
  color: #000 !important;
  font-family: Bebas !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.75px !important;
  text-transform: uppercase;
  border: none !important;
  border-radius: 250px !important;
  padding: 16px 32px !important;
  min-width: 8rem;
  cursor: pointer;
  transition:
    background var(--bl-ease),
    color var(--bl-ease);
}

.bl-new-rc .gform_footer input[type="submit"]:hover {
  background: var(--bl-green-dark) !important;
  color: #111111 !important;
}

.bl-new-rc .gform_validation_errors,
.bl-new-rc .gfield_description.validation_message {
  font-size: 0.8125rem;
}

@media (max-width: 960px) {
  .bl-new-rc__inner {
    grid-template-columns: 1fr;
  }

  .bl-new-rc__col--copy {
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    padding-left: max(
      1.25rem,
      calc((100vw - min(100vw, var(--bl-container))) / 2)
    );
    padding-right: max(
      1.25rem,
      calc((100vw - min(100vw, var(--bl-container))) / 2)
    );
  }

  .bl-new-rc__col--form {
    padding-left: max(
      1.25rem,
      calc((100vw - min(100vw, var(--bl-container))) / 2)
    );
    padding-right: max(
      1.25rem,
      calc((100vw - min(100vw, var(--bl-container))) / 2)
    );
  }

  .bl-new-rc ul.gform_fields {
    grid-template-columns: 1fr;
  }

  .bl-new-rc li.gfield.gf_left_half,
  .bl-new-rc li.gfield.gf_right_half,
  .bl-new-rc li.gfield--width-half {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .bl-new-hero__inner {
    padding: 3.5rem 1.25rem;
  }
  .bl-new-hero {
    min-height: 440px;
  }

  .bl-new-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-nh__util {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bl-nh__primary-nav,
  .bl-nh__cta-btn,
  .bl-nh__menu > li > a,
  .bl-nh__menu .sub-menu,
  .bl-new-hero__cta,
  .bl-new-pa__explore,
  .bl-new-footer__disclaimer-chevron {
    transition: none;
  }
}

/* 14/4 */

/* lime pill, black text */
.bl-new-hero__cta,
.bl-new-wwa__cta,
.bl-new-wcu__cta,
.bl-new-hwh__cta,
.bl-new-ci__cta,
.bl-new-bcf__cta,
.bl-new-pa__explore,
.bl-new-tst__vm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9fca3a !important;
  color: #111111 !important;
  font-family: "Bebas Neue", "Bebas", "Impact", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 15px 32px;
  border-radius: 50px;
  border: 2px solid #9fca3a !important;
  white-space: nowrap;
  transition:
    background var(--bl-ease),
    color var(--bl-ease),
    border-color var(--bl-ease),
    transform var(--bl-ease);
}

.bl-new-hero__cta:hover,
.bl-new-hero__cta:focus-visible,
.bl-new-wwa__cta:hover,
.bl-new-wwa__cta:focus-visible,
.bl-new-wcu__cta:hover,
.bl-new-wcu__cta:focus-visible,
.bl-new-hwh__cta:hover,
.bl-new-hwh__cta:focus-visible,
.bl-new-ci__cta:hover,
.bl-new-ci__cta:focus-visible,
.bl-new-bcf__cta:hover,
.bl-new-bcf__cta:focus-visible,
.bl-new-tst__vm:hover,
.bl-new-tst__vm:focus-visible,
.bl-new-pa__explore:hover,
.bl-new-pa__explore:focus-visible {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  transform: translateY(-2px);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .bl-new-hero__cta,
  .bl-new-wwa__cta,
  .bl-new-wcu__cta,
  .bl-new-hwh__cta,
  .bl-new-ci__cta,
  .bl-new-bcf__cta,
  .bl-new-pa__explore,
  .bl-new-tst__vm {
    transition: none;
  }
}

.bl-new-wwa__headline,
.bl-new-team__title,
.bl-new-hwh__title,
.bl-new-ci__title,
.bl-new-bcf__title,
.bl-new-nb__title,
.bl-new-tst__title {
  font-family: "Bebas Neue", "Bebas", "Impact", sans-serif !important;
  font-weight: 700 !important;
  font-size: 48px !important;
  line-height: 120% !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 0 0 24px !important;
  max-width: min(100%, 19em) !important;
}

.bl-new-tst__title,
.bl-new-ci__title {
  width: 100%;
}

.bl-new-wcu__title,
.bl-new-pa__title,
.bl-new-rc__title {
  font-family: "Bebas Neue", "Bebas", "Impact", sans-serif !important;
  font-weight: 700 !important;
  font-size: 48px !important;
  line-height: 90% !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: #ffffff !important;
  margin: 0 auto 42px !important;
  max-width: 100% !important;
}

.bl-new-rc__title {
  color: var(--bl-green) !important;
  margin: 10px 0 !important;
}

.bl-new-wwa__tagline,
.bl-new-team__tagline {
  font-family: "Avenir";
  font-size: 24px;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  color: #000000 !important;
  margin: 0 0 24px;
  padding: 0;
  max-width: 40rem;
}

.bl-new-wwa__body p,
.bbl-new-team__desc p,
.bl-new-pa__intro,
.bl-new-pa__footer,
.bl-new-team__desc p,
.bl-new-team__position {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Avenir";
  padding: 0;
}

.bl-new-pa__footer {
  margin: 0 auto;
  max-width: 840px;
}

.bl-new-team__position {
  margin: 0 0 16px !important;
}

.bl-new-wwa__body p:last-child,
.bl-new-team__desc p:last-child {
  margin-bottom: 0;
}

.bl-new-hwh__step-text,
.bl-new-ci__body p,
.bl-new-team__location,
.bl-new-bcf__answer,
.bl-new-rc__intro,
.gfield_consent_label,
.bl-new-footer__disclaimer-body p,
.bl-new-tst__short .bl-new-tst__excerpt,
.bl-new-tst__short .bl-new-tst__read,
.bl-new-tst__full .bl-new-tst__read,
.bl-new-tst__full-inner {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Avenir";
  padding: 0;
}

.bl-new-tst__full .bl-new-tst__read,
.bl-new-tst__short .bl-new-tst__read {
  color: var(--bl-green);
  background: transparent;
  border: none;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-top: 5px;
}

.bl-new-tst__read[aria-expanded="true"] {
  display: none;
}

.bl-new-tst__short:has(.bl-new-tst__read[aria-expanded="true"]) {
  display: none;
}

.bl-new-tst__full-inner p {
  padding: 0;
}

.bl-new-tst__full .bl-new-tst__full-inner,
.bl-new-tst__short .bl-new-tst__excerpt {
  margin: 24px 0 0 !important;
}

.bl-new-footer__disclaimer-body p {
  font-size: 14px;
}

.bl-new-rc__intro {
  color: #fff;
}

.bl-new-wcu__card-title,
.bl-new-ci__card-title,
.bl-new-team__heading {
  font-family: "Bebas" !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 0 24px !important;
}

.bl-new-ci__card-title {
  color: #000000 !important;
}

.bl-new-team__heading {
  margin: 0 !important;
}

.bl-new-wwa__eyebrow,
.bl-new-pa__eyebrow,
.bl-new-ci__eyebrow {
  font-size: 18px;
  font-weight: 500 !important;
  font-family: "Avenir Roman";
  padding-bottom: 0;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000000 !important;
}

.bl-new-pa__eyebrow {
  color: #ffffff !important;
}

.bl-new-tst__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.bl-new-ci__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.bl-new-hero,
.bl-new-wwa,
.bl-new-wcu,
.bl-new-org,
.bl-new-team,
.bl-new-hwh,
.bl-new-ci,
.bl-new-tst,
.bl-new-bcf,
.bl-new-nb,
.bl-new-rc {
  background: #ffffff !important;
  color: #000000;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.bl-new-wcu,
.bl-new-org,
.bl-new-pa,
.bl-new-rc {
  background: #000000 !important;
  color: #ffffff;
}

.bl-new-hwh,
.bl-new-tst {
  background: var(--bl-grey-light) !important;
}

.bl-new-pa,
.bl-new-nb {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.bl-new-footer {
  background: var(--bl-footer-bg);
  color: var(--bl-footer-ink);
  font-size: 0.9375rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding: 0 1.5rem;
}
