/*
 Theme Name:   Listeo Child
 Theme URI:    https://www.britaindirect.co.uk/
 Description:  Britain Direct - Premium Independent British Business Directory Child Theme (Home 8 Reference Architecture)
 Author:       Britain Direct
 Author URI:   https://www.britaindirect.co.uk/
 Template:     listeo
 Version:      2.0.0
 Text Domain:  listeo-child
*/

/* ==========================================================================
   BRITAIN DIRECT DESIGN TOKENS & SYSTEM
   ========================================================================== */

:root {
  --bd-navy: #0d264c;
  --bd-navy-dark: #07152b;
  --bd-navy-rgb: 13, 38, 76;
  --bd-red: #c91727;
  --bd-red-hover: #b01422;
  --bd-red-rgb: 201, 23, 39;
  --bd-red-light: #fef2f2;
  --bd-accent: #c91727;
  --bd-gold: #c91727;
  --bd-gold-light: #fef2f2;
  --bd-slate-900: #0d264c;
  --bd-slate-800: #1e293b;
  --bd-slate-600: #475569;
  --bd-slate-500: #64748b;
  --bd-slate-400: #94a3b8;
  --bd-slate-100: #f1f5f9;
  --bd-slate-50: #f8fafc;
  
  --bd-font-serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bd-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Overwrite Listeo Theme Primary CSS Variables */
  --primary-color: #0d264c !important;
  --listeo-primary-color: #0d264c !important;
  --listeo-primary-color-rgb: 13, 38, 76 !important;
  --listeo-primary-color-light: rgba(13, 38, 76, 0.05) !important;
  --light-pink-bg: rgba(201, 23, 39, 0.03) !important;
  --msf-color-primary: #0d264c !important;
  --msf-color-primary-light-bg: rgba(13, 38, 76, 0.04) !important;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY & RESET
   ========================================================================== */

body, p, li, input, textarea, select {
  font-family: var(--bd-font-sans) !important;
  color: #334155;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bd-font-sans) !important;
  color: var(--bd-navy);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ==========================================================================
   BUTTONS MUST NOT BE ROUNDED (Tailored 4px Radius)
   ========================================================================== */

button,
.button,
a.button,
.btn,
input[type="submit"],
input[type="button"],
.button.border,
.wp-block-button__link,
.main-search-input button.button,
.main-search-button,
.booking-widget .button,
.pagination .current,
.pagination a:hover,
.pagination li a,
.pagination li span,
.header-widget .button,
.header-widget a.button,
.listeo-fan-hero__primary,
.listeo-fan-hero__secondary,
.bd-fan-search-btn {
  border-radius: 4px !important;
  font-family: var(--bd-font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.2s ease-in-out !important;
}

/* Primary Button Styling */
button.button,
a.button,
input[type="submit"],
.header-widget .button,
.header-widget a.button {
  background-color: var(--bd-navy) !important;
  color: #ffffff !important;
  border: 1px solid var(--bd-navy) !important;
}

button.button:hover,
a.button:hover,
input[type="submit"]:hover,
.header-widget .button:hover,
.header-widget a.button:hover {
  background-color: var(--bd-red) !important;
  border-color: var(--bd-red) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.button.border {
  border: 1.5px solid var(--bd-navy) !important;
  color: var(--bd-navy) !important;
  background: transparent !important;
}

.button.border:hover {
  background-color: var(--bd-navy) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Brand Accent Stripe — clean British Red line at very top of viewport */
body::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--bd-red);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

#header-container {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.04) !important;
  position: sticky;
  top: 3px; /* account for brand stripe */
  z-index: 999;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#header {
  background: transparent !important;
}

#header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 80px !important;
  width: 100% !important;
  max-width: 1320px !important;
}

.left-side {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  float: none !important;
}

#logo {
  flex: 0 0 auto !important;
  margin-right: 36px !important;
  float: none !important;
}

#navigation.style-1 {
  display: flex !important;
  align-items: center !important;
  float: none !important;
}

#navigation.style-1 ul#responsive {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.right-side {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  float: none !important;
}

#logo,
#logo > a:first-child,
#logo picture {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

#logo a:not(:first-child),
#logo a.dashboard-logo,
.dashboard #logo a.dashboard-logo {
  display: none !important;
}


#logo img,
#listeo_logo {
  height: 44px !important;
  width: auto !important;
  max-width: 310px !important;
  object-fit: contain !important;
}

#navigation.style-1 > ul > li > a {
  font-family: var(--bd-font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--bd-navy) !important;
  background: transparent !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  letter-spacing: 0.01em !important;
}

#navigation.style-1 > ul > li:hover > a {
  color: var(--bd-red) !important;
  background: transparent !important;
}

/* Active menu indicator — clean underline accent */
#navigation.style-1 > ul > li.current-menu-item > a,
#navigation.style-1 > ul > li.current-menu-ancestor > a {
  color: var(--bd-navy) !important;
  background: transparent !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#navigation.style-1 > ul > li.current-menu-item > a::after,
#navigation.style-1 > ul > li.current-menu-ancestor > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--bd-red);
  border-radius: 1px;
}

/* Dropdown menus */
#navigation.style-1 ul ul {
  border-radius: 6px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14), 0 4px 12px rgba(15, 23, 42, 0.06) !important;
  border-top: 3px solid var(--bd-navy) !important;
  border-left: 1px solid #f1f5f9 !important;
  border-right: 1px solid #f1f5f9 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding: 6px 0 !important;
  background: #ffffff !important;
}

#navigation.style-1 ul ul li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  padding: 10px 22px !important;
  border-radius: 0 !important;
  transition: all 0.15s ease !important;
}

#navigation.style-1 ul ul li:hover a {
  color: var(--bd-red) !important;
  background: #fef2f2 !important;
  padding-left: 26px !important;
}

/* Header Right Side Widget */
.header-widget {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.header-widget .sign-in {
  font-family: var(--bd-font-sans) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--bd-navy) !important;
  padding: 9px 18px !important;
  border-radius: 4px !important;
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
}

.header-widget .sign-in:hover {
  color: var(--bd-navy) !important;
  border-color: var(--bd-navy) !important;
  background: #f8fafc !important;
}

/* ==========================================================================
   HOME 8 FAN HERO SECTION
   ========================================================================== */

.listeo-fan-hero.bd-home8-hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fbfcfe 45%, #f1f5f9 100%);
  padding: 75px 0 60px 0;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.listeo-fan-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.12;
}

.listeo-fan-hero__lines path {
  stroke: var(--bd-navy);
  stroke-width: 1.5;
}

.listeo-fan-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bd-fan-kicker-wrap {
  margin-bottom: 20px;
}

.bd-fan-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bd-fan-kicker i {
  color: #d97706;
}

.listeo-fan-hero__title {
  font-family: var(--bd-font-serif) !important;
  font-size: 54px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  letter-spacing: -0.02em !important;
  max-width: 900px !important;
  margin: 0 auto 20px auto !important;
  text-align: center !important;
}

.listeo-fan-hero__accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--bd-red);
  font-weight: 800;
}

.listeo-fan-hero__accent svg {
  position: absolute;
  left: -2%;
  bottom: -4px;
  width: 104%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
}

.listeo-fan-hero__accent path {
  stroke: #fbbf24;
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  opacity: 0.7;
}

.bd-fan-subtitle {
  font-family: var(--bd-font-sans) !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  max-width: 680px !important;
  margin: 0 auto 35px auto !important;
  text-align: center !important;
  font-weight: 400 !important;
}

/* ==========================================================================
   UNIFIED FLOATING SEARCH BAR (Home 8 Style)
   ========================================================================== */

.listeo-fan-hero__search {
  max-width: 1040px !important;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}

.bd-fan-search-bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 4px !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1) !important;
  width: 100% !important;
  overflow: hidden !important;
}

.bd-search-col {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  border-right: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  height: 58px !important;
}

.bd-col-keyword {
  flex: 1.4 1 0 !important;
}

.bd-col-icon {
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  font-size: 15px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.bd-search-col input[type="text"],
.bd-search-col select {
  width: 100% !important;
  height: 58px !important;
  line-height: 58px !important;
  padding: 0 16px 0 46px !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #0f172a !important;
  font-size: 14.5px !important;
  font-family: var(--bd-font-sans) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.bd-search-col select {
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 36px !important;
}

.bd-fan-search-btn {
  flex: 0 0 auto !important;
  background-color: var(--bd-navy) !important;
  color: #ffffff !important;
  font-family: var(--bd-font-sans) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em !important;
  padding: 0 34px !important;
  height: 58px !important;
  line-height: 58px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.2s ease-in-out !important;
  white-space: nowrap !important;
}

.bd-fan-search-btn:hover {
  background-color: var(--bd-red) !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .bd-fan-search-bar {
    flex-direction: column !important;
  }
  .bd-search-col {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    width: 100% !important;
  }
  .bd-fan-search-btn {
    width: 100% !important;
  }
}

/* Popular Searches Under Search */
.bd-fan-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13.5px;
}

.bd-fan-popular-label {
  font-weight: 700;
  color: var(--bd-navy);
  margin-right: 4px;
}

.bd-fan-popular a {
  display: inline-block;
  padding: 7px 16px;
  background: #ffffff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.bd-fan-popular a:hover {
  border-color: var(--bd-navy);
  color: #ffffff;
  background: var(--bd-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* ==========================================================================
   FAN CARD SHOWCASE (Interactive Staggered Cards)
   ========================================================================== */

.bd-fan-showcase-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 45px auto 30px auto;
  padding: 10px 15px;
}

.bd-fan-showcase-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  perspective: 1000px;
}

.bd-fan-card {
  flex: 0 0 215px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 3px solid #ffffff;
  cursor: pointer;
}

.bd-fan-card-1 {
  transform: rotate(-6deg) translateY(12px);
}

.bd-fan-card-2 {
  transform: rotate(-3deg) translateY(4px);
}

.bd-fan-card-3.bd-fan-card-center {
  transform: scale(1.08) translateY(-6px);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  border-color: #fbbf24;
}

.bd-fan-card-4 {
  transform: rotate(3deg) translateY(4px);
}

.bd-fan-card-5 {
  transform: rotate(6deg) translateY(12px);
}

.bd-fan-card:hover {
  transform: scale(1.12) translateY(-14px) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22) !important;
}

.bd-fan-card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.bd-fan-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bd-fan-card:hover img {
  transform: scale(1.08);
}

.bd-fan-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  text-align: left;
}

.bd-fan-card-cat {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #fbbf24 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 4px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.bd-fan-card-name,
h4.bd-fan-card-name {
  font-family: var(--bd-font-sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.bd-fan-card-grade {
  font-size: 11px !important;
  color: #e2e8f0 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.bd-fan-card-grade i {
  color: #fbbf24 !important;
}

@media (max-width: 991px) {
  .bd-fan-showcase-track {
    flex-wrap: wrap;
    gap: 14px;
  }
  .bd-fan-card {
    flex: 0 0 45%;
    transform: none !important;
  }
}

/* Fan Hero Footer Actions */
.bd-fan-hero-footer {
  margin-top: 25px;
  padding-top: 20px;
}

.listeo-fan-hero__intro {
  font-family: var(--bd-font-sans);
  font-size: 16px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 24px auto;
  line-height: 1.5;
}

.listeo-fan-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.listeo-fan-hero__primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bd-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.listeo-fan-hero__primary:hover {
  background: var(--bd-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.listeo-fan-hero__secondary {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--bd-navy);
  border: 1.5px solid #cbd5e1;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.listeo-fan-hero__secondary:hover {
  border-color: var(--bd-navy);
  color: var(--bd-navy);
  background: #f8fafc;
  transform: translateY(-2px);
}

/* ==========================================================================
   HOME 8 ACCENT HEADLINE COMPONENT
   ========================================================================== */

.listeo-accent-headline {
  text-align: center;
  margin-bottom: 45px;
}

.listeo-accent-headline__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--bd-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.listeo-accent-headline__title {
  font-family: var(--bd-font-serif) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.01em !important;
}

.listeo-accent-headline__subtitle {
  font-family: var(--bd-font-sans);
  font-size: 16.5px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Section Containers */
.bd-section-wrap.bg-white {
  background-color: #ffffff;
}

.bd-section-wrap.bg-light {
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

/* ==========================================================================
   HOMEPAGE GRID SYSTEM (CSS Grid — Prevents Float Snagging & Blank Spots)
   ========================================================================== */

.bd-category-grid,
.bd-features-grid,
.bd-articles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Listings Grid: 4 columns at full width, 3 with sidebar */
.bd-listings-grid,
.bd-grid-4-col {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* When constrained by a sidebar layout */
.col-lg-9 .bd-listings-grid,
.col-md-8 .bd-listings-grid,
.col-sm-7 .bd-listings-grid,
.has-sidebar .bd-listings-grid,
.sidebar-layout .bd-listings-grid,
.right-sidebar .bd-listings-grid,
.left-sidebar .bd-listings-grid,
.col-lg-9 #listeo-listings-container.new-grid-layout-nl,
.col-md-8 #listeo-listings-container.new-grid-layout-nl {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Full-width container override for core listeo */
.col-md-12 #listeo-listings-container.new-grid-layout-nl,
.full-width #listeo-listings-container.new-grid-layout-nl {
  grid-template-columns: repeat(4, 1fr) !important;
}

.bd-category-grid::before,
.bd-category-grid::after,
.bd-listings-grid::before,
.bd-listings-grid::after,
.bd-features-grid::before,
.bd-features-grid::after,
.bd-articles-grid::before,
.bd-articles-grid::after {
  display: none !important;
}

.bd-category-grid > [class*="col-"],
.bd-listings-grid > [class*="col-"],
.bd-features-grid > [class*="col-"],
.bd-articles-grid > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .bd-listings-grid,
  .bd-grid-4-col {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .col-lg-9 .bd-listings-grid,
  .col-md-8 .bd-listings-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .bd-category-grid,
  .bd-listings-grid,
  .bd-grid-4-col,
  .bd-features-grid,
  .bd-articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .bd-category-grid,
  .bd-listings-grid,
  .bd-grid-4-col,
  .bd-features-grid,
  .bd-articles-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ==========================================================================
   CATEGORY CARDS (Browse by Sector)
   ========================================================================== */

.bd-cat-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  height: 100% !important;
  width: 100% !important;
  flex: 1 1 auto !important;
}

.bd-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.bd-cat-card-img-wrap {
  position: relative;
  height: 180px;
  min-height: 180px;
  overflow: hidden;
}

.bd-cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.bd-cat-card:hover .bd-cat-card-img {
  transform: scale(1.05);
}

.bd-cat-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.03em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.bd-cat-card-body {
  padding: 22px;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.bd-cat-card-title {
  font-family: var(--bd-font-serif) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3;
}

.bd-cat-card:hover .bd-cat-card-title {
  color: var(--bd-red) !important;
}

.bd-cat-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1 !important;
}

.bd-cat-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bd-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto !important;
}

.bd-cat-card:hover .bd-cat-card-link {
  color: var(--bd-red);
  gap: 10px;
}


/* ==========================================================================
   AUTHENTICITY VERIFIED LISTINGS
   ========================================================================== */

.bd-listing-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100% !important;
  width: 100% !important;
  flex: 1 1 auto !important;
}

.bd-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.bd-listing-img-wrap {
  position: relative;
  height: 200px;
  min-height: 200px;
  overflow: hidden;
  background-color: #0f172a;
}

.bd-listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.bd-listing-card:hover .bd-listing-img {
  transform: scale(1.05);
}

.bd-listing-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  color: #64748b;
  font-size: 40px;
}

.bd-grade-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bd-navy);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bd-score-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #059669;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}

.bd-listing-body {
  padding: 22px;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.bd-listing-cat {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bd-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.bd-listing-title {
  font-family: var(--bd-font-serif) !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3;
}

.bd-listing-title a {
  color: var(--bd-navy) !important;
}

.bd-listing-title a:hover {
  color: var(--bd-red) !important;
}

.bd-listing-location {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}

.bd-listing-location i {
  color: #94a3b8;
  margin-right: 4px;
}

.bd-listing-tagline {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1 !important;
}

.bd-listing-footer {
  margin-top: auto !important;
}


.bd-btn-outline {
  display: block;
  text-align: center;
  border: 1.5px solid #cbd5e1 !important;
  color: var(--bd-navy) !important;
  background: #ffffff !important;
  padding: 9px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.bd-btn-outline:hover {
  background: var(--bd-navy) !important;
  border-color: var(--bd-navy) !important;
  color: #ffffff !important;
}

.bd-btn-primary {
  background-color: var(--bd-navy) !important;
  color: #ffffff !important;
  padding: 13px 30px !important;
  font-size: 14.5px !important;
}

/* ==========================================================================
   THREE COLUMN VALUE PROPOSITION
   ========================================================================== */

.bd-feature-card {
  padding: 38px 26px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
}

.bd-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.bd-feature-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 26px;
  color: var(--bd-navy);
}

.bd-feature-card:hover .bd-feature-icon-wrap {
  background: var(--bd-navy);
  color: #fbbf24;
  border-color: var(--bd-navy);
}

.bd-feature-title {
  font-family: var(--bd-font-serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
}

.bd-feature-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bd-feature-link {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--bd-navy);
}

.bd-feature-link:hover {
  color: var(--bd-red);
}

/* ==========================================================================
   WATCHDOG DESK ARTICLES
   ========================================================================== */

.bd-article-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.bd-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.bd-article-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.bd-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bd-article-card:hover .bd-article-img {
  transform: scale(1.05);
}

.bd-article-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  color: #64748b;
  font-size: 40px;
}

.bd-read-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.bd-article-body {
  padding: 22px;
}

.bd-article-byline {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bd-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.bd-article-title {
  font-family: var(--bd-font-serif) !important;
  font-size: 18.5px !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35;
}

.bd-article-title a {
  color: var(--bd-navy) !important;
}

.bd-article-title a:hover {
  color: var(--bd-red) !important;
}

.bd-article-excerpt {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bd-article-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--bd-navy);
}

.bd-article-link:hover {
  color: var(--bd-red);
}

/* ==========================================================================
   CALL TO ACTION BANNER (Register Your Business)
   ========================================================================== */

.bd-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.bd-cta-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bd-cta-title {
  color: #ffffff !important;
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.bd-cta-subtitle {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.bd-cta-buttons .bd-btn-gold {
  background-color: #f59e0b !important;
  color: #0f172a !important;
  border: 1px solid #f59e0b !important;
  padding: 14px 30px !important;
  font-size: 15px !important;
  margin: 0 8px 10px 8px !important;
}

.bd-cta-buttons .bd-btn-gold:hover {
  background-color: #fbbf24 !important;
  border-color: #fbbf24 !important;
  color: #020617 !important;
}

.bd-cta-buttons .bd-btn-trans {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid #94a3b8 !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  margin: 0 8px 10px 8px !important;
}

.bd-cta-buttons .bd-btn-trans:hover {
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

/* ==========================================================================
   FOOTER CLEANUP & BRANDING
   ========================================================================== */

/* ==========================================================================
   CLEAN, REFINED 2026 FOOTER (Compact, 5-Column, High-Utility)
   ========================================================================== */

#footer.bd-footer-refined {
  background-color: #070b14 !important;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 44px 0 24px !important;
  font-family: var(--bd-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
}

.bd-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 1024px) {
  .bd-footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .bd-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .bd-fcol-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .bd-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Brand Column */
.bd-fcol-brand .bd-fbrand-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.bd-fcol-brand .bd-fbrand-desc {
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: #94a3b8 !important;
  margin: 0 0 14px 0 !important;
  max-width: 280px;
}

.bd-fbrand-pills {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.bd-fmicro-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
}

.bd-fmicro-pill .text-gold {
  color: #f59e0b;
  font-size: 10px;
}

/* Column Headings */
.bd-fheading {
  color: #f1f5f9 !important;
  font-family: var(--bd-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

/* Link Lists */
.bd-flinks {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.bd-flinks li {
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  line-height: 1.35 !important;
}

.bd-flinks li:before {
  content: none !important;
  display: none !important;
}

.bd-flinks li a {
  color: #94a3b8 !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
  display: inline-block;
  padding: 0 !important;
}

.bd-flinks li a:hover {
  color: #fbbf24 !important;
  padding-left: 0 !important;
}

/* Payment Trust & Methods Bar in Footer */
.bd-footer-payments-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bd-fpayments-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bd-fpayments-badge {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.bd-fpayments-badge i {
  color: #fbbf24; /* Warm Gold */
  font-size: 13px;
}

.bd-fpayments-subtext {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 400;
}

.bd-fpayment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bd-fpay-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 5px;
  padding: 4px 8px;
  height: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  user-select: none;
}

.bd-fpay-card:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.bd-fpay-card svg {
  display: block;
  max-height: 18px;
  width: auto;
}

/* Legal Pages Styling (Terms, Privacy, Cookies) */
.bd-legal-wrap {
  max-width: 880px;
  margin: 32px auto 64px;
  padding: 0 20px;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}

.bd-legal-wrap h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.bd-legal-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 28px;
}

.bd-legal-highlight-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #16a34a; /* Positive green accent */
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.bd-legal-highlight-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-legal-highlight-box h3 i {
  color: #d97706;
}

.bd-legal-highlight-box p:last-child {
  margin-bottom: 0;
}

.bd-legal-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 34px 0 12px 0;
  letter-spacing: -0.01em;
}

.bd-legal-wrap ul {
  list-style: disc;
  padding-left: 24px;
  margin: 14px 0 24px;
}

.bd-legal-wrap ul li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.bd-legal-wrap a {
  color: #0284c7;
  text-decoration: underline;
}

.bd-legal-wrap a:hover {
  color: #0369a1;
}

/* Bottom Bar */
.bd-footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
  padding-top: 18px;
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

.bd-fbottom-left {
  color: #64748b;
}

.bd-fbottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bd-fbottom-right a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.bd-fbottom-right a:hover {
  color: #cbd5e1 !important;
}

.bd-fsep {
  color: #334155;
  font-size: 9px;
}

.bd-fsubtle {
  color: #475569;
}

/* ==========================================================================
   Category Breakdown Filter Bar (Archive & Search Results)
   ========================================================================== */
.bd-breakdown-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.bd-breakdown-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.bd-breakdown-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-breakdown-kicker i {
  color: #0f172a;
}

.bd-breakdown-parent {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.bd-breakdown-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bd-breakdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.bd-breakdown-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
}

.bd-breakdown-pill.active {
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.bd-breakdown-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  background: #e2e8f0;
  color: #475569;
  min-width: 18px;
}

.bd-breakdown-pill.active .bd-breakdown-count {
  background: #334155;
  color: #fbbf24;
}

@media (max-width: 768px) {
  .bd-breakdown-wrapper {
    padding: 12px 14px;
  }
  .bd-breakdown-pill {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ==========================================================================
   REUSABLE DARK HEADER COMPONENT
   Forces white text on any dark-background titlebar/header.
   Apply .bd-dark-header to ANY dark container and all headings, text,
   breadcrumbs etc. will be white — eliminating the navy-on-navy bug forever.
   ========================================================================== */

.bd-dark-header,
.bd-404-titlebar,
.bd-watchdog-titlebar,
.bd-gazette-titlebar {
  position: relative;
  overflow: hidden;
}

.bd-dark-header h1,
.bd-dark-header h2,
.bd-dark-header h3,
.bd-dark-header h4,
.bd-dark-header p,
.bd-404-titlebar h1,
.bd-404-titlebar h2,
.bd-404-titlebar h3,
.bd-404-titlebar h4,
.bd-404-titlebar p,
.bd-watchdog-titlebar h1,
.bd-watchdog-titlebar h2,
.bd-watchdog-titlebar h3,
.bd-watchdog-titlebar h4,
.bd-watchdog-titlebar p,
.bd-gazette-titlebar h1,
.bd-gazette-titlebar h2,
.bd-gazette-titlebar h3,
.bd-gazette-titlebar h4,
.bd-gazette-titlebar p {
  color: #ffffff !important;
}

/* ==========================================================================
   404 PAGE — PREMIUM REDESIGN
   ========================================================================== */

/* --- 404 Hero Section --- */
.bd-404-titlebar {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%) !important;
  padding: 70px 0 60px !important;
  border-bottom: none !important;
  text-align: center;
}

.bd-404-titlebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220, 38, 38, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(251, 191, 36, 0.08), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.bd-404-titlebar .container {
  position: relative;
  z-index: 2;
}

/* Animated gradient 404 number */
.bd-404-number {
  font-family: var(--bd-font-serif) !important;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #dc2626, #f59e0b, #fbbf24);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bd-404-shimmer 4s ease-in-out infinite;
  margin-bottom: 12px;
  opacity: 0.85;
}

@keyframes bd-404-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bd-404-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bd-font-sans) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24 !important;
  margin-bottom: 16px;
}

.bd-404-kicker .bd-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  display: inline-block;
  animation: bd-pulse-dot 2s ease-in-out infinite;
}

@keyframes bd-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
}

.bd-404-titlebar h1 {
  font-family: var(--bd-font-serif) !important;
  font-size: 40px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  margin: 0 auto 16px auto !important;
  max-width: 700px !important;
  letter-spacing: -0.01em !important;
}

.bd-404-subtitle {
  font-family: var(--bd-font-sans) !important;
  font-size: 17px !important;
  color: #94a3b8 !important;
  max-width: 620px;
  margin: 0 auto 32px auto !important;
  line-height: 1.6;
}

/* --- 404 Search Bar --- */
.bd-404-search-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.bd-404-search-bar {
  display: flex;
  background: #ffffff;
  border-radius: 6px;
  padding: 5px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bd-404-search-bar input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  border: none !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  color: #0f172a !important;
  outline: none !important;
  background: transparent !important;
  font-family: var(--bd-font-sans) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

.bd-404-search-bar .bd-404-search-btn {
  flex: 0 0 auto;
  background: var(--bd-red) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--bd-font-sans) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 0 26px !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.bd-404-search-bar .bd-404-search-btn:hover {
  background: var(--bd-navy) !important;
  transform: translateY(-1px);
}

/* --- 404 Content Body --- */
.bd-404-body {
  padding: 60px 0 70px;
}

/* --- 404 Section Headers --- */
.bd-404-section-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.bd-404-section-kicker {
  display: block;
  font-family: var(--bd-font-sans) !important;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bd-gold);
  margin-bottom: 4px;
}

.bd-404-section-title {
  font-family: var(--bd-font-serif) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 !important;
  line-height: 1.3;
}

.bd-404-section-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--bd-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.bd-404-section-link:hover {
  gap: 8px;
  color: var(--bd-navy);
}

/* --- 404 Category Grid --- */
.bd-404-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 55px;
}

.bd-404-cat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 22px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.bd-404-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.bd-404-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fef2f2, #fff1f2);
  color: var(--bd-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.bd-404-cat-card:hover .bd-404-cat-icon {
  background: var(--bd-navy);
  color: #fbbf24;
  transform: scale(1.05);
}

.bd-404-cat-card h3 {
  font-family: var(--bd-font-serif) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 6px !important;
  transition: color 0.2s ease;
}

.bd-404-cat-card:hover h3 {
  color: var(--bd-red) !important;
}

.bd-404-cat-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* --- 404 Navigation Pillars --- */
.bd-404-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 55px;
}

@media (max-width: 991px) {
  .bd-404-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .bd-404-pillars {
    grid-template-columns: 1fr;
  }
}

.bd-404-pillar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bd-404-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.bd-404-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.bd-404-pillar[data-accent="navy"]::before { background: var(--bd-navy); }
.bd-404-pillar[data-accent="red"]::before { background: var(--bd-red); }
.bd-404-pillar[data-accent="gold"]::before { background: var(--bd-gold); }
.bd-404-pillar[data-accent="green"]::before { background: #059669; }

.bd-404-pillar-num {
  font-family: var(--bd-font-sans) !important;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.bd-404-pillar[data-accent="navy"] .bd-404-pillar-num { color: var(--bd-navy); }
.bd-404-pillar[data-accent="red"] .bd-404-pillar-num { color: var(--bd-red); }
.bd-404-pillar[data-accent="gold"] .bd-404-pillar-num { color: var(--bd-gold); }
.bd-404-pillar[data-accent="green"] .bd-404-pillar-num { color: #059669; }

.bd-404-pillar h3 {
  font-family: var(--bd-font-serif) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 8px !important;
}

.bd-404-pillar p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 1;
}

.bd-404-pillar-link {
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.bd-404-pillar[data-accent="navy"] .bd-404-pillar-link { color: var(--bd-navy); }
.bd-404-pillar[data-accent="red"] .bd-404-pillar-link { color: var(--bd-red); }
.bd-404-pillar[data-accent="gold"] .bd-404-pillar-link { color: var(--bd-gold); }
.bd-404-pillar[data-accent="green"] .bd-404-pillar-link { color: #059669; }

.bd-404-pillar-link:hover {
  gap: 8px;
}

/* --- 404 Recovery Bar --- */
.bd-404-recovery {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.bd-404-recovery h4 {
  font-family: var(--bd-font-serif) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 6px !important;
}

.bd-404-recovery p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.bd-404-recovery-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bd-404-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bd-navy) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 11px 24px !important;
  transition: all 0.2s ease !important;
}

.bd-404-btn-home:hover {
  background: var(--bd-red) !important;
  transform: translateY(-1px);
}

.bd-404-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff !important;
  color: var(--bd-navy) !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 11px 24px !important;
  transition: all 0.2s ease !important;
}

.bd-404-btn-contact:hover {
  border-color: var(--bd-navy) !important;
  background: #f8fafc !important;
}

@media (max-width: 768px) {
  .bd-404-number {
    font-size: 80px;
  }
  .bd-404-titlebar h1 {
    font-size: 30px !important;
  }
  .bd-404-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bd-404-recovery {
    flex-direction: column;
    text-align: center;
  }
  .bd-404-recovery-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bd-404-cat-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Britain Direct Trust & Provenance Banner (Single Listing)
   ========================================================================== */
.bd-trust-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--bd-gold, #c89d5c);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.bd-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: center;
}

.bd-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-trust-icon {
  font-size: 20px;
  color: var(--bd-navy, #0f172a);
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.bd-trust-text {
  display: flex;
  flex-direction: column;
}

.bd-trust-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #64748b;
  line-height: 1.2;
}

.bd-trust-text strong {
  font-size: 13px;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

/* Claim button badge styling */
.claim-badge a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  border-radius: 6px !important;
  color: #b91c1c !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.claim-badge a:hover {
  background: #fee2e2 !important;
  border-color: #f87171 !important;
  color: #991b1b !important;
}

.claim-badge a i {
  color: #dc2626 !important;
}

/* ==========================================================================
   Britain Direct — Email Verification OTP & Password Reset Forms
   ========================================================================== */
.otp_registration-wrapper {
  margin: 24px 0 16px;
  padding: 24px 20px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
}

/* Britain Direct — High Polish OTP Email Verification Form */
.otp_registration {
  padding: 24px 20px 20px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  margin: 20px 0 !important;
  text-align: center !important;
}

.otp_registration h4 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.otp_registration p {
  font-size: 14px !important;
  color: #64748b !important;
  margin: 0 0 16px !important;
  line-height: 1.5 !important;
}

.otp-countdown {
  display: inline-block !important;
  background: #e2e8f0 !important;
  color: #334155 !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
}

#listeo_otp-inputs {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 20px auto 16px !important;
  padding: 0 !important;
}

#listeo_otp-inputs input,
#listeo_otp-inputs input[type="tel"],
#listeo_otp-inputs input.field__token,
.otp_registration input[type="tel"],
.otp_registration .field__token {
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  height: 60px !important;
  line-height: 56px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-align: center !important;
  border-radius: 10px !important;
  border: 2px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05) !important;
  outline: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
  -webkit-appearance: none !important;
}

#listeo_otp-inputs input:focus,
#listeo_otp-inputs input[type="tel"]:focus,
#listeo_otp-inputs input.field__token:focus,
.otp_registration input[type="tel"]:focus,
.otp_registration .field__token:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.22) !important;
  background: #ffffff !important;
  color: #0284c7 !important;
}

/* Centered & Polished Lost/Reset Password Forms */
.page-container-col .my-account,
.page-container-col #lostpasswordform,
.page-container-col #resetpassform {
  max-width: 480px !important;
  margin: 40px auto !important;
  background: #ffffff !important;
  padding: 38px 34px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid #e2e8f0 !important;
}

.page-container-col .notification.success {
  max-width: 480px !important;
  margin: 40px auto 20px !important;
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0 !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.page-container-col .lostpassword-button,
.page-container-col #resetpass-button {
  width: 100% !important;
  height: 50px !important;
  background: #0284c7 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
  margin-top: 14px !important;
}

.page-container-col .lostpassword-button:hover,
.page-container-col #resetpass-button:hover {
  background: #0369a1 !important;
  transform: translateY(-1px) !important;
}

/* ==========================================================================
   EDITORIAL SINGLE INVESTIGATION LAYOUT (Eradicates "Blog" Aesthetics)
   ========================================================================== */

/* Hide generic Listeo Blog titlebar on single post pages */
.single-post #titlebar,
body.single-post #titlebar,
.single #titlebar {
  display: none !important;
}

/* Editorial Investigation Header */
.bd-editorial-header {
  background: var(--bd-navy-dark);
  color: #ffffff;
  padding: 55px 0 45px;
  position: relative;
  border-bottom: 4px solid var(--bd-red);
  overflow: hidden;
}

.bd-editorial-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 23, 39, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(13, 38, 76, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.bd-article-breadcrumbs {
  margin-bottom: 18px;
}

.bd-article-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

.bd-article-breadcrumbs a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.bd-article-breadcrumbs a:hover {
  color: #fbbf24 !important;
}

.bd-article-breadcrumbs li[aria-current="page"] {
  color: #e2e8f0;
  font-weight: 500;
}

.bd-article-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bd-kicker-pill {
  background: #dc2626;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-kicker-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbbf24;
  font-weight: 700;
}

.bd-article-title {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .bd-article-title {
    font-size: 28px !important;
  }
}

.bd-article-standfirst {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif);
  font-size: 19px !important;
  font-style: italic;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  margin: 0 0 24px 0 !important;
  max-width: 840px;
}

.bd-article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bd-meta-author-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-author-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.bd-author-info {
  display: flex;
  flex-direction: column;
}

.bd-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.bd-author-title {
  font-size: 12px;
  color: #94a3b8;
}

.bd-meta-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-badge-item {
  font-size: 12.5px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-badge-verified {
  color: #38bdf8;
  font-weight: 600;
}

.bd-meta-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-share-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bd-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.bd-share-btn:hover {
  background: var(--bd-navy, #0f172a);
  color: #fbbf24 !important;
  transform: translateY(-2px);
}

/* Article Body & Prose Container */
.bd-editorial-body-wrap {
  background: #f8fafc;
  padding: 50px 0 80px;
}

.bd-single-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .bd-single-article {
    padding: 24px;
  }
}

.bd-article-hero-figure {
  margin: -40px -40px 35px -40px;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media (max-width: 768px) {
  .bd-article-hero-figure {
    margin: -24px -24px 25px -24px;
  }
}

.bd-article-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.bd-article-caption {
  font-size: 12.5px;
  color: #64748b;
  padding: 10px 40px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

/* Prose Typography */
.bd-article-prose {
  font-size: 17.5px;
  line-height: 1.85;
  color: #1e293b;
}

.bd-article-prose > p:first-of-type::first-letter {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif);
  font-size: 54px;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--bd-navy, #0f172a);
  font-weight: 900;
}

.bd-article-prose p {
  margin-bottom: 24px;
}

.bd-article-prose h2,
.bd-article-prose h3 {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  color: var(--bd-navy, #0f172a) !important;
  font-weight: 800 !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

.bd-article-prose h2 {
  font-size: 26px !important;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.bd-article-prose h3 {
  font-size: 21px !important;
}

.bd-article-prose ul,
.bd-article-prose ol {
  margin: 0 0 24px 20px;
  padding: 0;
}

.bd-article-prose ul li,
.bd-article-prose ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

blockquote::before,
blockquote::after,
.single-post blockquote::before,
.single-post blockquote::after,
.bd-article-prose blockquote::before,
.bd-article-prose blockquote::after {
  content: none !important;
  display: none !important;
}

blockquote,
.single-post blockquote,
.bd-article-prose blockquote {
  display: block !important;
  position: relative !important;
  border-left: 4px solid var(--bd-red) !important;
  background: #f8fafc !important;
  padding: 24px 30px !important;
  margin: 32px 0 !important;
  font-family: var(--bd-font-sans) !important;
  font-size: 17.5px !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  color: #1e293b !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: none !important;
  text-indent: 0 !important;
}

blockquote p,
.single-post blockquote p,
.bd-article-prose blockquote p {
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  text-indent: 0 !important;
}

/* In-Article Callouts */
.bd-article-charter-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin: 45px 0 35px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #334155;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.bd-charter-cta-icon {
  font-size: 42px;
  color: #fbbf24;
  flex-shrink: 0;
}

.bd-charter-cta-text h3 {
  color: #ffffff !important;
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 22px !important;
  margin: 0 0 8px !important;
}

.bd-charter-cta-text p {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 16px !important;
}

.bd-charter-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bd-charter-cta-buttons .button {
  margin: 0 !important;
}

/* Whistleblower Box */
.bd-article-whistleblower-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  padding: 24px 28px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.bd-wb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ef4444;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.bd-article-whistleblower-box h4 {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #991b1b !important;
  margin: 0 0 8px !important;
}

.bd-article-whistleblower-box p {
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.6;
  margin: 0 0 12px !important;
}

.bd-wb-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #b91c1c !important;
  text-decoration: underline !important;
}

/* Navigation Cards */
.bd-article-nav-row {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.bd-nav-card {
  display: block;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 18px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  height: 100%;
}

.bd-nav-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.bd-nav-direction {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}

.bd-nav-title {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--bd-navy, #0f172a);
  line-height: 1.4;
  display: block;
}


/* ==========================================================================
   HIGH-CONVERTING EDITORIAL SIDEBAR STYLES
   ========================================================================== */

.bd-editorial-sidebar {
  position: relative;
}

.bd-sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

/* 1. Search */
.bd-sidebar-search {
  padding: 16px;
  background: #ffffff;
}

.bd-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bd-search-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
}

.bd-search-field {
  width: 100% !important;
  height: 44px !important;
  padding: 0 44px 0 38px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  font-size: 13.5px !important;
  background: #f8fafc !important;
  transition: all 0.2s ease !important;
  margin-bottom: 0 !important;
}

.bd-search-field:focus {
  background: #ffffff !important;
  border-color: var(--bd-navy, #0f172a) !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
}

.bd-search-submit {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 32px;
  height: 32px;
  background: var(--bd-navy, #0f172a);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s ease;
}

.bd-search-submit:hover {
  background: #1e293b;
}

/* 2. High-Impact CTA Card */
.bd-sidebar-cta-card {
  background: linear-gradient(135deg, #0a101d 0%, #1e293b 100%);
  color: #ffffff;
  border: 1px solid #334155;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.bd-sidebar-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fbbf24;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bd-sidebar-cta-title {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
}

.bd-sidebar-cta-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bd-sidebar-cta-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.bd-sidebar-cta-points li {
  font-size: 13px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bd-sidebar-cta-points i {
  color: #10b981;
  font-size: 14px;
}

.bd-sidebar-btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: #fbbf24;
  color: #0f172a !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bd-sidebar-btn-gold:hover {
  background: #f59e0b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* 3. Featured Investigations */
.bd-sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.bd-sidebar-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.bd-sidebar-title {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--bd-navy, #0f172a) !important;
  margin: 0 !important;
}

.bd-sidebar-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bd-sidebar-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bd-sidebar-post-thumb {
  width: 72px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.bd-sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-sidebar-post-info {
  display: flex;
  flex-direction: column;
}

.bd-sidebar-post-meta {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 4px;
}

.bd-sidebar-post-title {
  font-size: 13.5px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

.bd-sidebar-post-title a {
  color: #1e293b !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.bd-sidebar-post-title a:hover {
  color: #dc2626 !important;
}

.bd-sidebar-all-articles {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  text-align: right;
}

.bd-sidebar-link-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bd-navy, #0f172a) !important;
  text-decoration: none !important;
}

.bd-sidebar-link-more:hover {
  color: #dc2626 !important;
}

/* 4. Tip-Off Card */
.bd-sidebar-tipoff-card {
  background: #fff8f8;
  border: 1px solid #fecaca;
  border-left: 4px solid var(--bd-red);
}

.bd-sidebar-tipoff-badge {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--bd-red);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.bd-sidebar-tipoff-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 8px 0 !important;
}

.bd-sidebar-tipoff-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bd-sidebar-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  background: var(--bd-navy);
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.bd-sidebar-btn-dark:hover {
  background: var(--bd-red);
}

/* 5. Charter Card */
.bd-sidebar-charter-card {
  text-align: center;
  background: #ffffff;
}

.bd-sidebar-charter-icon {
  font-size: 32px;
  color: var(--bd-red);
  margin-bottom: 10px;
}

.bd-sidebar-charter-title {
  font-family: var(--bd-font-sans) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 8px 0 !important;
}

.bd-sidebar-charter-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bd-sidebar-charter-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bd-red) !important;
  text-decoration: underline !important;
}

/* 6. Newsletter */
.bd-sidebar-newsletter {
  background: #f8fafc;
}

.bd-sidebar-nl-title {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--bd-navy, #0f172a) !important;
  margin: 0 0 6px 0 !important;
}

.bd-sidebar-nl-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bd-sidebar-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bd-sidebar-nl-input {
  width: 100% !important;
  height: 40px !important;
  padding: 0 12px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  background: #ffffff !important;
  margin-bottom: 0 !important;
}

.bd-sidebar-nl-btn {
  height: 40px !important;
  background: var(--bd-navy, #0f172a) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.bd-sidebar-nl-btn:hover {
  background: #1e293b !important;
}

.bd-sidebar-nl-note {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
}

/* ==========================================================================
   2026 MODERN EDITORIAL & HUB HEADERS (High Utility, Clean, Non-Oppressive)
   ========================================================================= */

/* Single Article Top Utility Bar */
.bd-article-page-wrap {
  background: #f8fafc;
  padding: 24px 0 80px;
}

.bd-article-top-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.bd-article-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}

.bd-article-crumbs a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.bd-article-crumbs a:hover {
  color: #0f172a !important;
}

.bd-crumb-sep {
  color: #cbd5e1;
}

.bd-crumb-current {
  color: #0f172a;
  font-weight: 600;
}

.bd-utility-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bd-utility-back-btn {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a !important;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.bd-utility-back-btn:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
}

.bd-utility-pill {
  font-size: 12px;
  color: #64748b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-utility-share-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bd-share-text {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.bd-quick-share {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bd-quick-share:hover {
  background: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
}

/* Clean Article Container */
.bd-clean-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .bd-clean-article {
    padding: 24px 20px;
  }
}

.bd-article-header-block {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

.bd-article-kicker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bd-kicker-badge {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dc2626;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.bd-kicker-topic {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bd-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bd-clean-article-title {
  font-family: var(--bd-font-sans) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: -0.025em;
}

@media (max-width: 768px) {
  .bd-clean-article-title {
    font-size: 26px !important;
  }
}

.bd-clean-standfirst {
  font-family: var(--bd-font-serif, "Playfair Display", Georgia, serif);
  font-size: 18.5px !important;
  font-style: italic;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin: 0 0 22px 0 !important;
}

.bd-clean-byline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.bd-byline-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-byline-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bd-byline-name {
  display: block;
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 700;
}

.bd-byline-date {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.bd-byline-trust {
  display: flex;
  align-items: center;
}

.bd-trust-tag {
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Clean Hero Figure */
.bd-clean-hero-figure {
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 35px 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.bd-clean-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.bd-clean-hero-caption {
  font-size: 12.5px;
  color: #64748b;
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

/* Modern Hub Header for /articles/ and /watchdog-desk/ */
.bd-hub-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0 32px;
  position: relative;
}

.bd-hub-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
}

.bd-hub-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
}

.bd-hub-breadcrumbs a {
  color: #64748b !important;
  text-decoration: none !important;
  font-weight: 500;
}

.bd-hub-breadcrumbs a:hover {
  color: #0f172a !important;
}

.bd-hub-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

.bd-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.bd-pulse-red {
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.bd-hub-main-row {
  align-items: center;
}

.bd-hub-kicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bd-navy);
  display: block;
  margin-bottom: 8px;
}

.bd-watchdog-kicker {
  color: var(--bd-red);
}

.bd-hub-title {
  font-family: var(--bd-font-sans) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  line-height: 1.2 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.025em !important;
}

.bd-hub-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

.bd-hub-action-col {
  display: flex;
  justify-content: flex-end;
}

.bd-hub-action-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 20px;
  width: 100%;
  max-width: 360px;
}

.bd-watchdog-action-card {
  background: #fff5f5;
  border: 1px solid #fed7d7;
}

.bd-hac-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bd-red);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.bd-hac-label-red {
  color: #dc2626;
}

.bd-hac-text {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bd-hac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0f172a;
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bd-hac-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.bd-hac-btn-red {
  background: #dc2626;
}

.bd-hac-btn-red:hover {
  background: #b91c1c;
}

/* Hub Interactive Utility Bar (Improves Usage) */
.bd-hub-utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #f1f5f9;
}

.bd-hub-search-box {
  position: relative;
  flex: 1 1 300px;
  max-width: 420px;
}

.bd-hub-search-box input {
  width: 100% !important;
  height: 42px !important;
  padding: 0 16px 0 40px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  font-size: 13.5px !important;
  background: #f8fafc !important;
  margin: 0 !important;
  transition: all 0.2s ease !important;
}

.bd-hub-search-box input:focus {
  background: #ffffff !important;
  border-color: #0f172a !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
}

.bd-hub-search-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #94a3b8;
  font-size: 14px;
}

.bd-hub-pills-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bd-hub-pill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bd-hub-pill:hover,
.bd-hub-pill.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Watchdog Desk Quick-Nav Grid (4 Interactive Metric Cards) */
.bd-watchdog-quicknav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.bd-watchdog-quicknav-grid.bd-quicknav-3-col {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 991px) {
  .bd-watchdog-quicknav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bd-watchdog-quicknav-grid {
    grid-template-columns: 1fr;
  }
}

.bd-wnav-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.bd-wnav-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.bd-wnav-card-static {
  background: #f8fafc;
  cursor: default;
}

.bd-wnav-card-static:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.bd-wnav-num {
  font-family: monospace;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.text-red { color: #dc2626; }
.text-amber { color: #d97706; }
.text-blue { color: #0284c7; }
.text-green { color: #059669; }

.bd-wnav-info {
  display: flex;
  flex-direction: column;
}

.bd-wnav-title {
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.3;
}

.bd-wnav-sub {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.3;
}

/* ==========================================================================
   BRITAIN DIRECT 2026 MEGAMENUS (Streamlined, High-Utility, Beautiful)
   ========================================================================== */

.bd-main-navigation {
  float: left;
  margin-left: 24px;
}

/* ==========================================================================
   RESET LISTEO DEFAULT PSEUDO-ELEMENT ARROWS (ELIMINATES DOUBLE CHEVRONS)
   ========================================================================== */
#navigation.bd-main-navigation ul li a:after,
#navigation.bd-main-navigation ul ul li a:after,
#navigation.style-1 ul li a:after,
#navigation.style-1 ul ul li a:after,
#navigation ul.bd-primary-nav-list a:after,
.bd-primary-nav-list a:after,
.bd-primary-nav-list li a:after,
.bd-megamenu-dropdown a:after,
.bd-mm-item-link:after,
.bd-mm-primary-btn:after,
.bd-mm-secondary-link:after {
  content: none !important;
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.bd-primary-nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.bd-primary-nav-list .bd-nav-item {
  position: relative !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bd-primary-nav-list .bd-nav-item > .bd-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 26px 16px !important;
  font-family: var(--bd-font-sans) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--bd-navy) !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: color 0.18s ease !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
}

.bd-primary-nav-list .bd-nav-item:hover > .bd-nav-link {
  color: var(--bd-red) !important;
  background: transparent !important;
}

.bd-primary-nav-list .bd-nav-item.current-menu-item > .bd-nav-link {
  color: var(--bd-navy) !important;
  background: transparent !important;
}

/* Single Controlled Navigation Chevron */
.bd-nav-arrow {
  font-size: 10px !important;
  color: #94a3b8 !important;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.18s ease !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bd-primary-nav-list .bd-nav-item:hover .bd-nav-arrow {
  transform: rotate(180deg) !important;
  color: var(--bd-red) !important;
}

/* Clean Underline for Active Menu Item */
.bd-primary-nav-list .bd-nav-item.current-menu-item > .bd-nav-link:after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: 16px !important;
  left: 16px !important;
  right: 16px !important;
  height: 2px !important;
  background: var(--bd-red) !important;
  border-radius: 2px !important;
}

/* Megamenu Container & Card Dropdown */
.bd-megamenu-dropdown {
  position: absolute !important;
  top: calc(100% - 6px) !important;
  background: #ffffff !important;
  border: 1px solid rgba(13, 38, 76, 0.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 50px -10px rgba(13, 38, 76, 0.18), 0 6px 20px -4px rgba(13, 38, 76, 0.06) !important;
  padding: 24px 26px 18px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 0.18s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s !important;
  pointer-events: none !important;
  z-index: 99999 !important;
  text-align: left !important;
}

/* Invisible hover bridge */
.bd-megamenu-dropdown:before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: -14px !important;
  left: 0 !important;
  right: 0 !important;
  height: 14px !important;
  background: transparent !important;
}

.bd-primary-nav-list .bd-nav-item.bd-has-megamenu:hover .bd-megamenu-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.bd-mm-find-businesses {
  width: 900px !important;
  left: -10px !important;
}

.bd-mm-british-matters {
  width: 900px !important;
  left: -120px !important;
}

/* Megamenu Topline Banner */
.bd-mm-topline {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 12px !important;
  margin-bottom: 20px !important;
}

.bd-mm-topline-kicker {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--bd-navy) !important;
}

.bd-mm-topline-meta {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #64748b !important;
}

/* 3-Column Layout */
.bd-mm-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 1.15fr 1.1fr !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.bd-mm-col {
  display: flex !important;
  flex-direction: column !important;
}

.bd-mm-col-kicker {
  font-family: var(--bd-font-sans) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--bd-red) !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.bd-mm-col-title {
  font-family: var(--bd-font-sans) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 14px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

/* Structured Item Links with Icons */
.bd-mm-item-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 10px !important;
  margin: 0 -8px 5px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.16s ease !important;
  background: transparent !important;
  border-left: 2.5px solid transparent !important;
}

.bd-mm-item-link:hover {
  background: #f8fafc !important;
  border-left-color: var(--bd-red) !important;
  text-decoration: none !important;
  transform: translateX(2px) !important;
}

/* Icon Box */
.bd-mm-icon-box {
  width: 34px !important;
  height: 34px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13.5px !important;
  flex-shrink: 0 !important;
  transition: transform 0.15s ease !important;
}

.bd-mm-item-link:hover .bd-mm-icon-box {
  transform: scale(1.05) !important;
}

.bd-mm-icon-navy { background: #e2e8f0 !important; color: #0d264c !important; }
.bd-mm-icon-gold { background: #fef3c7 !important; color: #b45309 !important; }
.bd-mm-icon-red  { background: #fee2e2 !important; color: #c91727 !important; }

.bd-mm-item-content {
  flex-grow: 1 !important;
  min-width: 0 !important;
}

.bd-mm-item-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.bd-mm-item-name {
  font-family: var(--bd-font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--bd-navy) !important;
  line-height: 1.3 !important;
  transition: color 0.15s ease !important;
}

.bd-mm-item-link:hover .bd-mm-item-name {
  color: var(--bd-red) !important;
}

.bd-mm-arrow {
  font-size: 9.5px !important;
  color: #94a3b8 !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: all 0.18s ease !important;
}

.bd-mm-item-link:hover .bd-mm-arrow {
  opacity: 1 !important;
  color: var(--bd-red) !important;
  transform: translateX(0) !important;
}

.bd-mm-item-desc {
  font-size: 11px !important;
  line-height: 1.4 !important;
  color: #64748b !important;
  font-weight: 400 !important;
  margin: 1px 0 0 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Feature Spotlight Panel (Column 3) */
.bd-mm-spotlight-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-top: 3px solid var(--bd-navy) !important;
  border-radius: 6px !important;
  padding: 20px 22px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 2px 10px rgba(13, 38, 76, 0.04) !important;
  box-sizing: border-box !important;
}

.bd-mm-spotlight-box.bd-mm-spotlight-red {
  background: #fff8f8 !important;
  border-color: #fecaca !important;
  border-top: 3px solid var(--bd-red) !important;
}

.bd-mm-spotlight-badge {
  font-family: var(--bd-font-sans) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: var(--bd-navy) !important;
  background: #e2e8f0 !important;
  padding: 3px 8px !important;
  border-radius: 3px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  width: fit-content !important;
  margin-bottom: 12px !important;
}

.bd-mm-spotlight-badge.bd-badge-red {
  color: #b91c1c !important;
  background: #fee2e2 !important;
}

.bd-mm-spotlight-title {
  font-family: var(--bd-font-sans) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--bd-navy) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}

.bd-mm-spotlight-desc {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #475569 !important;
  margin: 0 0 14px 0 !important;
}

/* Trust Checklist in Spotlight */
.bd-mm-trust-points {
  margin-bottom: 16px !important;
}

.bd-mm-tp-item {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.bd-mm-tp-item i {
  font-size: 11px !important;
}

.bd-mm-primary-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  text-align: center !important;
  background: var(--bd-navy) !important;
  color: #ffffff !important;
  font-family: var(--bd-font-sans) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  padding: 11px 16px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  margin-bottom: 10px !important;
  transition: all 0.18s ease !important;
  border: 1px solid var(--bd-navy) !important;
  box-sizing: border-box !important;
}

.bd-mm-primary-btn:hover {
  background: #173868 !important;
  border-color: #173868 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(13, 38, 76, 0.15) !important;
}

.bd-mm-primary-btn-red {
  background: var(--bd-red) !important;
  border-color: var(--bd-red) !important;
}

.bd-mm-primary-btn-red:hover {
  background: #b01422 !important;
  border-color: #b01422 !important;
  box-shadow: 0 4px 12px rgba(201, 23, 39, 0.2) !important;
}

.bd-mm-secondary-link {
  display: block !important;
  font-family: var(--bd-font-sans) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: var(--bd-red) !important;
  text-decoration: none !important;
  text-align: center !important;
  width: 100% !important;
  transition: color 0.15s ease !important;
}

.bd-mm-secondary-link:hover {
  color: var(--bd-red-hover) !important;
  text-decoration: underline !important;
}

/* Megamenu Bottom Bar */
.bd-mm-footer-bar {
  border-top: 1px solid #f1f5f9 !important;
  margin-top: 18px !important;
  padding-top: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 11.5px !important;
}

.bd-mm-fb-left {
  color: #64748b !important;
  font-weight: 600 !important;
}

.bd-mm-fb-links {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.bd-mm-fb-links a {
  color: var(--bd-navy) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color 0.15s ease !important;
}

.bd-mm-fb-links a:hover {
  color: var(--bd-red) !important;
}

@media (max-width: 991px) {
  .bd-main-navigation {
    display: none !important;
  }
}

/* Britain Direct — 3-Tier Listing Pricing Grid Polish */
.new-pricing-packages-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  margin: 30px 0 40px !important;
  justify-content: center !important;
}

.pricing-package {
  flex: 1 1 320px !important;
  max-width: 380px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.pricing-package:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
  border-color: #cbd5e1 !important;
}

.pricing-package.best-value-plan {
  border: 2px solid #dc2626 !important;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12) !important;
  position: relative !important;
}

.pricing-package-header {
  padding: 24px 24px 18px !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.pricing-package-header h4 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}

.pricing-package-header span {
  background: #dc2626 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
}

.pricing-package-text {
  padding: 16px 24px 0 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: #64748b !important;
}

.pricing-package-price {
  padding: 18px 24px 16px !important;
  text-align: center !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.pricing-package-price strong {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
}

.pricing-package-details {
  padding: 20px 24px !important;
  flex: 1 1 auto !important;
}

.pricing-package-details h6 {
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #94a3b8 !important;
  margin-bottom: 14px !important;
}

.pricing-package-details ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pricing-package-details ul li {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #334155 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 11px !important;
}

.pricing-package-details ul li svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin-top: 2px !important;
}

.pricing-package-select {
  padding: 18px 24px 24px !important;
  background: #ffffff !important;
}

.pricing-package-select label {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 13px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
}

.pricing-package.best-value-plan .pricing-package-select label {
  background: #dc2626 !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25) !important;
}

.pricing-package [type="radio"]:checked + label {
  background: #16a34a !important;
  border-color: #16a34a !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3) !important;
}

/* ==========================================================================
   BRITAIN DIRECT — DEDICATED SALES & PRICING LANDING PAGE (/list-your-business/)
   ========================================================================== */

.bd-sales-page-wrapper {
  background-color: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 1. Hero Section */
.bd-sales-hero {
  background: linear-gradient(135deg, #090e17 0%, #0f172a 60%, #1e293b 100%);
  color: #ffffff;
  padding: 55px 0 65px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bd-sales-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.12), transparent 70%);
  pointer-events: none;
}

.bd-sales-breadcrumbs {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-sales-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bd-sales-breadcrumbs a:hover {
  color: #ffffff;
}

.bd-sales-breadcrumbs .bd-sep {
  color: #64748b;
}

.bd-sales-breadcrumbs .bd-current {
  color: #f1f5f9;
  font-weight: 600;
}

.bd-sales-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f8fafc;
  margin-bottom: 18px;
}

.bd-pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: bdPulseGreen 2s infinite;
}

@keyframes bdPulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.bd-sales-hero-title {
  font-size: 40px !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  color: #ffffff !important;
  letter-spacing: -0.03em !important;
  max-width: 880px;
  margin: 0 0 16px 0 !important;
}

.bd-sales-hero-sub {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  max-width: 820px;
  margin: 0 0 32px 0 !important;
}

.bd-sales-hero-sub strong {
  color: #ffffff;
}

/* Pre-Launch Build Special Banner */
.bd-build-offer-banner {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.12) 0%, rgba(245, 158, 11, 0.16) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.bd-bob-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  background: #f59e0b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.bd-bob-content {
  flex: 1 1 auto;
}

.bd-bob-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 4px;
}

.bd-bob-heading {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.01em !important;
}

.bd-bob-desc {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #e2e8f0 !important;
  margin: 0 !important;
}

.bd-bob-action {
  flex: 0 0 auto;
}

.bd-bob-btn {
  background: #dc2626;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
  transition: all 0.2s ease;
}

.bd-bob-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.5);
}

/* Trust Bar */
.bd-sales-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bd-stb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

.bd-stb-item i {
  font-size: 18px;
}

.bd-stb-item span strong {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
}

/* Common Section Headers */
.bd-section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.bd-section-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 8px;
}

.bd-section-headline {
  font-size: 32px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 12px 0 !important;
}

.bd-section-subline {
  font-size: 15.5px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* 2. Value Pillars Section */
.bd-sales-pillars-section {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.bd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bd-pillar-card {
  padding: 32px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.bd-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

.bd-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.bd-pillar-card h3 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
}

.bd-pillar-card p {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* 3. Pricing Section */
.bd-sales-pricing-section {
  padding: 80px 0;
  background: #f8fafc;
}

.bd-pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

.bd-price-card {
  flex: 1 1 340px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bd-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.bd-card-featured {
  border: 2px solid #0f2942;
  box-shadow: 0 10px 32px rgba(15, 41, 66, 0.12);
}

.bd-price-badge-top {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 14px;
  text-transform: uppercase;
}

.bd-badge-offer {
  background: #ecfdf5;
  border-bottom: 1px solid #a7f3d0;
  color: #065f46;
}

.bd-badge-popular {
  background: #0f2942;
  border-bottom: 1px solid #1e3a8a;
  color: #ffffff;
}

.bd-badge-flagship {
  background: #090e17;
  border-bottom: 1px solid #d97706;
  color: #fbbf24;
}

.bd-price-card-header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid #f1f5f9;
}

.bd-tier-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.01em !important;
}

.bd-tier-desc {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #64748b !important;
  margin: 0 0 20px 0 !important;
  min-height: 40px;
}

.bd-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.bd-price-orig {
  font-size: 18px;
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 600;
}

.bd-price-amount {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.bd-price-free {
  color: #16a34a;
}

.bd-price-period {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.bd-price-subnote {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.bd-price-subnote strong {
  color: #0f172a;
}

.bd-price-card-body {
  padding: 24px 28px;
  flex: 1 1 auto;
}

.bd-features-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 14px;
}

.bd-tier-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.bd-tier-features li {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #334155 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.bd-tier-features li > span {
  flex: 1 1 auto !important;
  display: block !important;
}

.bd-tier-features li .bd-feat-sub {
  font-size: 12.5px !important;
  color: #64748b !important;
  font-weight: 500 !important;
  display: inline !important;
}

.bd-check-green { color: #15803d; font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.bd-check-blue  { color: #2563eb; font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.bd-check-gold  { color: #d97706; font-size: 14px; margin-top: 3px; flex-shrink: 0; }

.bd-price-card-footer {
  padding: 0 28px 28px;
}

.bd-tier-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  border: none;
  cursor: pointer;
}

.bd-btn-free {
  background: #15803d;
  color: #ffffff !important;
}
.bd-btn-free:hover {
  background: #166534;
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.35);
  transform: translateY(-2px);
}

.bd-btn-royal {
  background: #0f2942;
  color: #ffffff !important;
}
.bd-btn-royal:hover {
  background: #1e3a8a;
  box-shadow: 0 6px 18px rgba(15, 41, 66, 0.35);
  transform: translateY(-2px);
}

.bd-btn-gold {
  background: #090e17;
  border: 1.5px solid #d97706;
  color: #fbbf24 !important;
}
.bd-btn-gold:hover {
  background: #b45309;
  border-color: #b45309;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
  transform: translateY(-2px);
}

.bd-tier-footer-note {
  display: block;
  text-align: center;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 10px;
}

/* 4. Comparison Table Section */
.bd-sales-table-section {
  padding: 70px 0 80px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.bd-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bd-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.bd-comparison-table th {
  background: #0f172a;
  color: #ffffff;
  padding: 20px 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #1e293b;
}

.bd-comparison-table th.bd-col-feature {
  text-align: left;
  background: #090e17;
  font-size: 15px;
}

.bd-th-tier {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.bd-th-price {
  display: block;
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 4px;
}

.bd-comparison-table td {
  padding: 16px 22px;
  text-align: center;
  font-size: 13.5px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.bd-cell-feature {
  text-align: left !important;
  color: #0f172a !important;
  font-size: 14px !important;
}

.bd-col-highlight {
  background: rgba(220, 38, 38, 0.02) !important;
}

.bd-table-check {
  color: #16a34a;
  font-size: 16px;
}

.bd-pill-metric {
  display: inline-block;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.bd-tr-actions td {
  padding: 24px 22px;
  background: #f8fafc;
}

.bd-table-cta {
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bd-table-cta-free { background: #16a34a; color: #ffffff !important; }
.bd-table-cta-free:hover { background: #15803d; }
.bd-table-cta-red  { background: #dc2626; color: #ffffff !important; }
.bd-table-cta-red:hover  { background: #b91c1c; }
.bd-table-cta-navy { background: #0f172a; color: #ffffff !important; }
.bd-table-cta-navy:hover { background: #1e293b; }

/* 5. Steps Section */
.bd-sales-steps-section {
  padding: 70px 0;
  background: #f8fafc;
}

.bd-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.bd-step-card {
  padding: 36px 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.bd-step-number {
  font-size: 36px;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 16px;
  font-family: inherit;
}

.bd-step-card h3 {
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
}

.bd-step-card p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* 6. FAQ Section */
.bd-sales-faq-section {
  padding: 75px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.bd-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bd-faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 28px;
}

.bd-faq-item h4 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.bd-faq-item h4 i {
  color: #dc2626;
  margin-top: 2px;
}

.bd-faq-item p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* 7. Bottom CTA */
.bd-sales-bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #090e17 0%, #0f172a 100%);
  color: #ffffff;
  text-align: center;
}

.bd-bottom-cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.bd-bcta-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid #dc2626;
  color: #fca5a5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.bd-bottom-cta-box h2 {
  font-size: 34px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.25 !important;
}

.bd-bottom-cta-box p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  margin: 0 0 32px 0 !important;
}

.bd-bcta-btn-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bd-btn-cta-main {
  background: #dc2626;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transition: all 0.2s ease;
}

.bd-btn-cta-main:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.5);
}

.bd-btn-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bd-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bd-sales-hero-title {
    font-size: 28px !important;
  }
  .bd-build-offer-banner {
    flex-direction: column;
    text-align: center;
  }
  .bd-bob-action {
    width: 100%;
  }
  .bd-bob-btn {
    width: 100%;
    justify-content: center;
  }
  .bd-section-headline {
    font-size: 25px !important;
  }
  .bd-bottom-cta-box h2 {
    font-size: 26px !important;
  }
}

/* ==========================================================================
   BRITAIN DIRECT CLIENT BACKEND / DASHBOARD POLISH
   ========================================================================== */

/* Dashboard Layout & Header */
body.dashboard-page #header-container.dashboard {
  background: #ffffff !important;
  border-bottom: 1px solid #eef2f6 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

body.dashboard-page #dashboard {
  background: #f8fafc !important;
}

.dashboard-content {
  width: calc(100% - 260px) !important;
  max-width: calc(100% - 260px) !important;
  flex: 1 1 auto !important;
  margin-left: 260px !important;
  padding: 35px 40px 60px 40px !important;
  background: #f8fafc !important;
  box-sizing: border-box !important;
  float: none !important;
  clear: both !important;
}

/* Dashboard Sidebar Navigation */
.dashboard-nav {
  background: #ffffff !important;
  border-right: 1px solid #eef2f6 !important;
  padding-top: 20px !important;
}

.dashboard-nav-inner {
  padding: 0 14px !important;
}

.dashboard-nav ul {
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  list-style: none !important;
}

.dashboard-nav ul li {
  margin-bottom: 4px !important;
}

.dashboard-nav ul li a {
  display: flex !important;
  align-items: center !important;
  padding: 11px 16px !important;
  color: #475569 !important;
  font-family: var(--bd-font-sans) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.dashboard-nav ul li a i,
.dashboard-nav ul li a [class*="sl-icon-"],
.dashboard-nav ul li a [class*="fa-"] {
  font-size: 16px !important;
  margin-right: 12px !important;
  width: 20px !important;
  text-align: center !important;
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
}

.dashboard-nav ul li:hover a {
  background: #f1f5f9 !important;
  color: #0f2942 !important;
}

.dashboard-nav ul li:hover a i {
  color: #0f2942 !important;
}

/* Active navigation item */
.dashboard-nav ul li.active a,
.dashboard-nav ul li.current_page_item a {
  background: rgba(15, 41, 66, 0.08) !important;
  color: #0f2942 !important;
  font-weight: 700 !important;
}

.dashboard-nav ul li.active a i,
.dashboard-nav ul li.current_page_item a i {
  color: #0f2942 !important;
}

/* Dashboard nav section titles (MAIN, LISTINGS, ACCOUNT) */
.dashboard-nav ul li.section-title,
.dashboard-nav h4 {
  font-family: var(--bd-font-sans) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #94a3b8 !important;
  padding: 16px 16px 6px 16px !important;
  margin: 0 !important;
}

/* Badges inside nav */
.dashboard-nav .nav-tag {
  margin-left: auto !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
}

.dashboard-nav .nav-tag.green {
  background: #dcfce7 !important;
  color: #166534 !important;
}

.dashboard-nav .nav-tag.blue,
.dashboard-nav .nav-tag.messages {
  background: #e0f2fe !important;
  color: #0369a1 !important;
}

/* Dashboard Header & Titlebar */
#dashboard #titlebar {
  clear: both !important;
  width: 100% !important;
  float: none !important;
  margin: 0 0 25px 0 !important;
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
}

#dashboard #titlebar .row {
  margin: 0 !important;
}

#dashboard #titlebar h2,
#dashboard #titlebar h1 {
  font-family: var(--bd-font-sans) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f2942 !important;
  display: block !important;
  clear: both !important;
  margin: 0 0 8px 0 !important;
  float: none !important;
}

#dashboard #breadcrumbs {
  display: block !important;
  clear: both !important;
  float: none !important;
  margin: 0 !important;
}

/* ==========================================================================
   ELEVATED DASHBOARD STAT CARDS GRID (100% FULL WIDTH, 4-COLUMN)
   ========================================================================== */
.bd-dashboard-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  clear: both !important;
  margin: 0 0 30px 0 !important;
}

.bd-stat-col {
  width: 100% !important;
  min-width: 0 !important;
}

.bd-dash-stat-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 125px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 20px 22px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.bd-dash-stat-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07) !important;
  border-color: #cbd5e1 !important;
}

.bd-dash-stat-card.bd-stat-green { border-top: 4px solid #15803d !important; }
.bd-dash-stat-card.bd-stat-navy  { border-top: 4px solid #0f2942 !important; }
.bd-dash-stat-card.bd-stat-amber { border-top: 4px solid #d97706 !important; }
.bd-dash-stat-card.bd-stat-blue  { border-top: 4px solid #2563eb !important; }

.bd-dsc-head {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.bd-dsc-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  flex-shrink: 0 !important;
}

.bd-stat-green .bd-dsc-icon { background: #dcfce7 !important; color: #15803d !important; }
.bd-stat-navy .bd-dsc-icon  { background: #e0f2fe !important; color: #0f2942 !important; }
.bd-stat-amber .bd-dsc-icon { background: #fef3c7 !important; color: #d97706 !important; }
.bd-stat-blue .bd-dsc-icon  { background: #eff6ff !important; color: #2563eb !important; }

.bd-dsc-label {
  font-family: var(--bd-font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.bd-dsc-body {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.bd-dsc-number {
  font-family: var(--bd-font-sans) !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #0f2942 !important;
  line-height: 1 !important;
}

.bd-dsc-hint {
  font-size: 12px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

/* ==========================================================================
   LOWER DASHBOARD GRID (Recent Activities & Listing Packages)
   ========================================================================== */
.bd-dashboard-lower-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  clear: both !important;
  margin-bottom: 30px !important;
}

.bd-dash-col {
  width: 100% !important;
  min-width: 0 !important;
}

/* Copyrights cleared to full width at bottom */
.dashboard-content .row:has(.copyrights),
.dashboard-content .copyrights {
  clear: both !important;
  width: 100% !important;
  float: none !important;
  margin-top: 40px !important;
  padding-top: 20px !important;
  border-top: 1px solid #e2e8f0 !important;
  display: block !important;
}

@media (max-width: 1200px) {
  .bd-dashboard-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .dashboard-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 25px 20px 50px 20px !important;
  }
  .bd-dashboard-lower-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .bd-dashboard-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

.bd-dash-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  height: 100%;
}

.bd-dash-box-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.bd-dash-box-header h3 {
  font-family: var(--bd-font-sans);
  font-size: 16.5px;
  font-weight: 700;
  color: #0f2942;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-clear-btn {
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.bd-clear-btn:hover {
  background: #e2e8f0;
  color: #0f2942;
}

.bd-add-pkg-link {
  font-size: 13px;
  font-weight: 700;
  color: #0f2942;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bd-add-pkg-link:hover {
  color: #1e3a8a;
}

.bd-dash-box-body {
  padding: 24px;
}

/* Empty states */
.bd-empty-state {
  text-align: center;
  padding: 30px 20px;
}

.bd-empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #94a3b8;
  margin: 0 auto 16px auto;
}

.bd-empty-state p {
  font-family: var(--bd-font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--bd-navy);
  margin: 0 0 6px 0;
}

.bd-empty-state span {
  font-size: 13px;
  color: #64748b;
  display: block;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.5;
}

/* User listing package list items */
.bd-packages-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.bd-pkg-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.bd-pkg-item:last-child {
  margin-bottom: 0;
}

.bd-pkg-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--bd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 14px;
  flex-shrink: 0;
}

.bd-pkg-details {
  flex: 1;
}

.bd-pkg-details h4 {
  font-family: var(--bd-font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bd-navy);
  margin: 0 0 3px 0;
}

.bd-pkg-details p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

.bd-pkg-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ==========================================================================
   ADD BUSINESS / SUBMIT PACKAGE PAGE (/add-business/) OVERHAUL
   ========================================================================== */
.bd-submit-package-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 15px 50px 15px;
}

.bd-submit-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 35px auto;
}

.bd-submit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(186, 12, 47, 0.08);
  color: var(--bd-red);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.bd-submit-title {
  font-family: var(--bd-font-sans);
  font-size: 34px;
  font-weight: 900;
  color: var(--bd-navy);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.bd-submit-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Free Build Special callout banner */
.bd-submit-free-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fefce8;
  border: 1.5px solid #fef08a;
  border-radius: 10px;
  padding: 12px 20px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.bd-sfc-icon {
  font-size: 22px;
  color: #ca8a04;
  flex-shrink: 0;
}

.bd-sfc-text {
  font-size: 13.5px;
  color: #854d0e;
  line-height: 1.5;
}

.bd-sfc-text strong {
  color: #713f12;
}

/* Submit grid specific styling */
.bd-submit-grid {
  margin-top: 10px;
}

.bd-submit-grid .bd-price-card {
  cursor: pointer;
  transition: all 0.25s ease;
}

.bd-submit-grid .bd-price-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Active card selection ring */
.bd-submit-grid .bd-price-card.bd-card-active {
  border-color: var(--bd-red) !important;
  box-shadow: 0 0 0 3px rgba(186, 12, 47, 0.25), 0 18px 40px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-4px);
}

.bd-submit-grid .bd-price-card.bd-card-active .bd-tier-btn {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Owned packages bar on submit form */
.bd-owned-packages-box {
  background: #ffffff;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.05);
}

.bd-owned-headline {
  font-family: var(--bd-font-sans);
  font-size: 17px;
  font-weight: 800;
  color: #166534;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-owned-divider {
  text-align: center;
  position: relative;
  margin: 22px 0 0 0;
}

.bd-owned-divider:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.bd-owned-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 14px;
  font-size: 11.5px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.06em;
}

/* Guest notice wrapper */
.bd-guest-submit-notice-wrapper {
  max-width: 680px;
  margin: 40px auto 60px auto;
  padding: 0 15px;
}

.bd-guest-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bd-guest-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(186, 12, 47, 0.08);
  color: var(--bd-red);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bd-guest-box h2 {
  font-family: var(--bd-font-sans);
  font-size: 28px;
  font-weight: 800;
  color: var(--bd-navy);
  margin: 0 0 12px 0;
}

.bd-guest-box p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 auto 25px auto;
  max-width: 520px;
}

/* ==========================================================================
   SUBMIT LISTING STEP 2: CONCIERGE BANNER, TIER STATUS & GATED FIELDS
   ========================================================================== */

/* White-Glove Concierge Callout Banner */
.bd-concierge-callout-banner {
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05);
}

.bd-ccb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.bd-ccb-content {
  flex: 1;
}

.bd-ccb-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.bd-ccb-title {
  font-family: var(--bd-font-sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--bd-navy);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.bd-ccb-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.bd-ccb-direct {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

.bd-ccb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bd-navy);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.bd-ccb-btn:hover {
  background: #1e3a5f;
  transform: translateY(-1px);
}

.bd-ccb-btn-secondary {
  background: #ffffff;
  color: var(--bd-navy) !important;
  border: 1px solid #cbd5e1;
}

.bd-ccb-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

/* Tier Status Bar */
.bd-tier-status-bar {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.bd-tsb-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bd-tsb-pill {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bd-tsb-info {
  font-size: 14.5px;
  color: var(--bd-navy);
}

.bd-tsb-price {
  color: #64748b;
  font-weight: 500;
  margin-left: 4px;
}

.bd-tsb-change-btn {
  font-size: 13px;
  font-weight: 700;
  color: #0f2942;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease;
}

.bd-tsb-change-btn:hover {
  background: #e2e8f0;
  color: #0f2942;
  border-color: #94a3b8;
}

/* Gated / Locked Field Styling */
.bd-field-locked-wrapper {
  position: relative;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.bd-field-locked-wrapper:hover {
  opacity: 0.9;
}

.bd-locked-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid #fde68a;
  margin-left: 8px;
  cursor: help;
  vertical-align: middle;
}

.bd-locked-input-container {
  position: relative;
}

.bd-locked-input {
  background: #f8fafc !important;
  border: 1.5px dashed #cbd5e1 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  padding-right: 38px !important;
  font-size: 13.5px !important;
}

.bd-locked-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

/* Locked Section Card (e.g. Services Menu for Tier 1) */
.bd-locked-section-card {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px 0 25px 0;
}

.bd-lsc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e2e8f0;
  color: #64748b;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bd-lsc-content h4 {
  font-family: var(--bd-font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--bd-navy);
  margin: 0 0 5px 0;
}

.bd-lsc-content p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* Submit Bottom Actions */
.bd-submit-bottom-actions {
  text-align: center;
  padding-top: 15px;
  margin-bottom: 50px;
}

.bd-btn-primary-submit {
  background: var(--bd-navy) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 16px 42px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(11, 26, 45, 0.25) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.bd-btn-primary-submit:hover {
  background: #1e3a5f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(11, 26, 45, 0.3) !important;
}

.bd-submit-footnote {
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}