/*
 * BVD CSS Patch v1.1 — Targets actual rendered class names
 * Applies make-interfaces-feel-better principles:
 * - Shadows over borders for natural depth
 * - Concentric border radius on nested elements
 * - Tabular nums on prices to prevent layout shift
 * - Scale on press for CTAs
 * - Font smoothing, text-wrap balance on headings
 */

/* ─── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --bvd-navy:   #0A2540;
  --bvd-navy2:  #1E3A5F;
  --bvd-gold:   #F59E0B;
  --bvd-blue:   #2563EB;
  --bvd-text:   #1A1A2E;
  --bvd-muted:  #64748B;
  --bvd-bg:     #F8FAFC;
  --bvd-card:   #FFFFFF;
  --bvd-border: #E2E8F0;
  --bvd-radius: 12px;
  --bvd-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --bvd-shadow-hover: 0 4px 12px rgba(0,0,0,.10), 0 12px 32px rgba(0,0,0,.10);
}

/* ─── FONT SMOOTHING + GLOBAL ─────────────────────────────── */
body { -webkit-font-smoothing: antialiased; background: var(--bvd-bg); }
.bvd-destination-inner { max-width: 900px; margin: 0 auto; padding: 0 20px 60px; }

/* ─── PAGE HEADER ─────────────────────────────────────────── */
.bvd-page-header { margin: 32px 0 24px; }
.bvd-destination-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--bvd-text);
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: 12px;
}
.bvd-breadcrumb { font-size: .8rem; color: var(--bvd-muted); }
.bvd-breadcrumb ol { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0; }
.bvd-breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--bvd-muted); }
.bvd-breadcrumb a { color: var(--bvd-muted); text-decoration: none; }
.bvd-breadcrumb a:hover { color: var(--bvd-blue); }

/* ─── FTC DISCLOSURE ─────────────────────────────────────── */
.ftc-disclosure {
  background: #FFFBEB; border-left: 4px solid var(--bvd-gold);
  padding: 8px 14px; font-size: .8rem; color: #92400E;
  border-radius: 0 6px 6px 0; margin-bottom: 20px;
}
.ftc-disclosure strong { color: #78350F; }
.ftc-disclosure a { color: var(--bvd-blue); }

/* ─── AUTHOR BYLINE ──────────────────────────────────────── */
.author-byline {
  display: flex; align-items: center; gap: 10px;
  background: var(--bvd-card); border: 1px solid var(--bvd-border);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 24px;
  font-size: .82rem;
}
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.byline-text { display: flex; flex-direction: column; gap: 1px; }
.byline-text [itemprop="name"] a { font-weight: 700; color: var(--bvd-text); font-size: .9rem; }
.byline-title { color: var(--bvd-muted); font-size: .78rem; }
.byline-date { color: var(--bvd-muted); font-size: .75rem; }

/* ─── QUICK ANSWER BLOCK ─────────────────────────────────── */
.quick-answer, .atomic-answer {
  background: #EFF6FF; border-left: 4px solid var(--bvd-blue);
  border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0 28px;
  position: relative;
}
.quick-answer__label {
  display: inline-block; background: var(--bvd-gold); color: #fff;
  font-size: .65rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 4px;
  margin-bottom: 8px;
}
.quick-answer__text, .atomic-answer p {
  font-size: .95rem; color: #1E3A5F; line-height: 1.65;
  text-wrap: pretty; margin: 0;
}

/* ─── SECTION HEADINGS ───────────────────────────────────── */
.bvd-section-heading {
  font-size: 1.55rem; font-weight: 800; color: var(--bvd-text);
  margin: 40px 0 20px; padding-bottom: 10px; text-wrap: balance;
  border-bottom: 3px solid var(--bvd-gold); display: inline-block;
}

/* ─── LEAFLET MAP ────────────────────────────────────────── */
.destination-map {
  width: 100%; height: 380px; border-radius: var(--bvd-radius);
  box-shadow: var(--bvd-shadow); overflow: hidden; margin-bottom: 28px;
  outline: 1px solid rgba(0,0,0,.06);
}

/* ─── HOTEL CARDS GRID (actual class: .bvd-hotel-cards) ────── */
.bvd-hotel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.bvd-hotel-card {
  background: var(--bvd-card);
  border-radius: var(--bvd-radius);
  box-shadow: var(--bvd-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
  outline: 1px solid rgba(0,0,0,.05);
}
.bvd-hotel-card:hover {
  box-shadow: var(--bvd-shadow-hover);
  transform: translateY(-2px);
}
.bvd-hotel-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.bvd-hotel-card__name {
  font-size: 1rem; font-weight: 700; color: var(--bvd-text);
  line-height: 1.3; text-wrap: balance;
}
.bvd-hotel-card__stars { color: var(--bvd-gold); font-size: .9rem; letter-spacing: 1px; }
.bvd-hotel-card__rating {
  font-size: .8rem; color: var(--bvd-muted);
  font-variant-numeric: tabular-nums;
}
.bvd-hotel-card__rating-value { font-weight: 700; color: var(--bvd-text); }
.bvd-hotel-card__price {
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--bvd-border);
}
.bvd-hotel-card__price-from { font-size: .72rem; color: var(--bvd-muted); display: block; }
.bvd-hotel-card__price-amount {
  font-size: 1.3rem; font-weight: 800; color: var(--bvd-blue);
  font-variant-numeric: tabular-nums;
}
.bvd-hotel-card__price-unit { font-size: .78rem; color: var(--bvd-muted); }
.bvd-hotel-card__cta {
  display: block; width: 100%; margin-top: 12px;
  background: var(--bvd-gold); color: #1A1A2E !important;
  font-weight: 700; font-size: .85rem;
  padding: 11px 16px; border-radius: 8px;
  text-align: center; text-decoration: none;
  transition: background .15s ease, transform .1s ease;
  box-shadow: 0 2px 8px rgba(245,158,11,.3);
}
.bvd-hotel-card__cta:hover { background: #D97706; text-decoration: none !important; }
.bvd-hotel-card__cta:active { transform: scale(0.96); }

/* ─── TOUR CARDS GRID (actual class: .bvd-tour-cards) ──────── */
.bvd-tour-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.bvd-tour-card {
  background: var(--bvd-card); border-radius: var(--bvd-radius);
  box-shadow: var(--bvd-shadow); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  outline: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .2s ease;
}
.bvd-tour-card:hover { box-shadow: var(--bvd-shadow-hover); }
.bvd-tour-card__content { flex: 1; }
.bvd-tour-card__name {
  font-size: 1.05rem; font-weight: 700; color: var(--bvd-text);
  margin-bottom: 6px; line-height: 1.3;
}
.bvd-tour-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; color: var(--bvd-muted); flex-wrap: wrap;
}
.bvd-tour-card__duration::before { content: "⏱ "; }
.bvd-tour-card__price {
  font-weight: 700; color: var(--bvd-blue);
  font-variant-numeric: tabular-nums; font-size: .95rem;
}
.bvd-tour-card__partner {
  background: var(--bvd-bg); color: var(--bvd-muted);
  font-size: .7rem; padding: 2px 7px; border-radius: 4px;
  border: 1px solid var(--bvd-border); text-transform: uppercase; letter-spacing: .05em;
}
.bvd-tour-card__desc { font-size: .85rem; color: var(--bvd-muted); margin: 8px 0 12px; line-height: 1.5; }
.bvd-tour-card__cta {
  display: inline-block; background: var(--bvd-blue); color: #fff !important;
  font-size: .82rem; font-weight: 700; padding: 9px 18px; border-radius: 8px;
  text-decoration: none; transition: background .15s, transform .1s;
}
.bvd-tour-card__cta:hover { background: #1D4ED8; text-decoration: none !important; }
.bvd-tour-card__cta:active { transform: scale(0.96); }

/* ─── CAR RENTAL ─────────────────────────────────────────── */
.bvd-car-rental-block {
  background: linear-gradient(135deg, var(--bvd-navy) 0%, var(--bvd-navy2) 100%);
  border-radius: var(--bvd-radius); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.bvd-car-rental-block__copy { color: #fff; }
.bvd-car-rental-block h2 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.bvd-car-rental-block p { color: rgba(255,255,255,.75); font-size: .85rem; margin: 0; }
.bvd-car-rental-block__cta {
  display: inline-block; background: var(--bvd-gold); color: #1A1A2E !important;
  font-weight: 700; font-size: .9rem; padding: 12px 24px; border-radius: 8px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .15s, transform .1s;
  box-shadow: 0 2px 8px rgba(245,158,11,.4);
}
.bvd-car-rental-block__cta:hover { background: #D97706; text-decoration: none !important; }
.bvd-car-rental-block__cta:active { transform: scale(0.96); }

/* ─── FAQ ────────────────────────────────────────────────── */
.bvd-faq-list { display: flex; flex-direction: column; gap: 0; }
.bvd-faq-item {
  border-bottom: 1px solid var(--bvd-border); padding: 18px 0;
}
.bvd-faq-item:first-child { border-top: 1px solid var(--bvd-border); }
.bvd-faq-item__question {
  font-weight: 700; font-size: .95rem; color: var(--bvd-text);
  line-height: 1.4; margin-bottom: 8px; display: flex; gap: 10px; align-items: baseline;
}
.bvd-faq-item__question::before {
  content: "Q"; background: var(--bvd-gold); color: #fff;
  font-size: .65rem; font-weight: 800; padding: 2px 6px;
  border-radius: 4px; flex-shrink: 0; line-height: 1.6;
}
.bvd-faq-item__answer { font-size: .88rem; color: var(--bvd-muted); line-height: 1.65; text-wrap: pretty; }

/* ─── WHY VISIT ──────────────────────────────────────────── */
.bvd-why-visit-section { margin: 32px 0; }
.bvd-why-visit__content {
  font-size: .92rem; color: var(--bvd-muted); line-height: 1.75;
  background: var(--bvd-card); border-radius: var(--bvd-radius);
  padding: 24px; box-shadow: var(--bvd-shadow);
  outline: 1px solid rgba(0,0,0,.04);
}

/* ─── HERO IMAGE ──────────────────────────────────────────── */
.bvd-hero-image-wrap {
  width: 100%; border-radius: var(--bvd-radius); overflow: hidden;
  box-shadow: var(--bvd-shadow); margin-bottom: 28px;
  outline: 1px solid rgba(0,0,0,.06);
}
.bvd-hero-image { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ─── GENERAL BUTTONS ─────────────────────────────────────── */
.bvd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 8px; text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  min-height: 44px; padding: 0 20px; font-size: .88rem;
  cursor: pointer; border: none;
}
.bvd-btn:active { transform: scale(0.96); }
.bvd-btn--primary { background: var(--bvd-gold); color: #1A1A2E !important; box-shadow: 0 2px 8px rgba(245,158,11,.3); }
.bvd-btn--primary:hover { background: #D97706; text-decoration: none !important; }
.bvd-btn--secondary { background: var(--bvd-blue); color: #fff !important; }
.bvd-btn--secondary:hover { background: #1D4ED8; text-decoration: none !important; }
.bvd-btn--outline { background: transparent; color: var(--bvd-blue) !important; border: 2px solid var(--bvd-blue); }
.bvd-btn--outline:hover { background: var(--bvd-blue); color: #fff !important; text-decoration: none !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .bvd-hotel-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bvd-destination-inner { padding: 0 16px 40px; }
  .bvd-hotel-cards { grid-template-columns: 1fr; }
  .bvd-destination-h1 { font-size: 1.7rem; }
  .bvd-section-heading { font-size: 1.3rem; }
  .bvd-tour-card { flex-direction: column; }
  .destination-map { height: 260px; }
  .bvd-hero-image { height: 220px; }
  .bvd-car-rental-block { flex-direction: column; }
}

/* ─── WEATHER STRIP ──────────────────────────────────────── */
.bvd-weather-section { margin: 32px 0; }
.bvd-weather-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 16px;
}
.bvd-weather-strip__item {
  background: var(--bvd-card); border-radius: 10px;
  box-shadow: var(--bvd-shadow); padding: 16px;
  display: flex; align-items: center; gap: 12px;
  outline: 1px solid rgba(0,0,0,.04);
}
.bvd-weather-strip__icon { font-size: 1.6rem; line-height: 1; }
.bvd-weather-strip__label { display: block; font-size: .72rem; color: var(--bvd-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.bvd-weather-strip__val { font-size: .9rem; font-weight: 700; color: var(--bvd-text); font-variant-numeric: tabular-nums; }
.bvd-weather__tip { font-size: .85rem; color: var(--bvd-muted); background: #F0FDF4; border-left: 3px solid #059669; padding: 10px 14px; border-radius: 0 8px 8px 0; }

/* ─── WIDEN PAGE CONTAINER ───────────────────────────────── */
.bvd-destination-inner { max-width: 1100px !important; padding: 0 32px 60px !important; }

/* ─── TOUR CARDS — MORE VISUAL WEIGHT ───────────────────── */
.bvd-tours-section .bvd-section-heading { display: block; width: 100%; }
.bvd-tour-card { border-left: 4px solid var(--bvd-blue); }
.bvd-tour-card__name { font-size: 1.1rem; }
.bvd-tour-card__meta { margin-bottom: 4px; }

/* ─── EMAIL CAPTURE SECTION ──────────────────────────────── */
.bvd-email-capture-section {
  background: linear-gradient(135deg, var(--bvd-navy) 0%, #1E3A5F 100%);
  border-radius: var(--bvd-radius); padding: 36px 40px; margin: 40px 0;
  text-align: center;
}
.bvd-email-capture-section h2 { color: #fff; margin-bottom: 8px; text-wrap: balance; }
.bvd-email-capture-section p { color: rgba(255,255,255,.75); margin-bottom: 20px; font-size: .9rem; }
.bvd-email-capture-section .wpforms-form { max-width: 480px; margin: 0 auto; }
.bvd-email-capture-section .wpforms-field input[type="email"] {
  border-radius: 8px !important; border: 2px solid rgba(255,255,255,.2) !important;
  background: rgba(255,255,255,.1) !important; color: #fff !important;
  padding: 12px 16px !important; font-size: 1rem !important;
}
.bvd-email-capture-section .wpforms-submit {
  background: var(--bvd-gold) !important; color: #1A1A2E !important;
  font-weight: 700 !important; padding: 12px 28px !important;
  border-radius: 8px !important; border: none !important;
}

/* ─── RESPONSIVE WEATHER ─────────────────────────────────── */
@media (max-width: 768px) {
  .bvd-weather-strip { grid-template-columns: repeat(2,1fr); }
  .bvd-destination-inner { max-width: 100% !important; padding: 0 16px 40px !important; }
}
@media (max-width: 480px) {
  .bvd-weather-strip { grid-template-columns: 1fr; }
}

/* ─── HOTEL CARD IMAGE ───────────────────────────────────── */
.bvd-hotel-card__image {
  width: 100%; height: 180px; overflow: hidden; flex-shrink: 0;
  background: #E2E8F0;
}
.bvd-hotel-card__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease; outline: none;
}
.bvd-hotel-card:hover .bvd-hotel-card__image img { transform: scale(1.04); }

/* ─── TOUR CARD IMAGE ────────────────────────────────────── */
.bvd-tour-card__image {
  width: 90px; height: 70px; border-radius: 8px; overflow: hidden;
  flex-shrink: 0; background: #E2E8F0;
}
.bvd-tour-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bvd-tour-card__content { flex: 1; }

/* ─── FIX GENERAETEPRESS CONTAINER OVERRIDES ─────────────── */
.bvd-destination-single .entry-content,
.bvd-destination-single .post-content,
article.bvd-destination-single {
  max-width: 100% !important;
  padding: 0 !important;
}
.site-main { max-width: 100% !important; }
.grid-container { max-width: 1200px !important; }

/* ─── LOGO TREATMENT ─────────────────────────────────────── */
.site-header .site-branding .site-title a {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: -.02em;
}

/* ─── WIDEN GENERATEPRESS CONTAINERS ON DESTINATION PAGES ── */
.bvd-destination .grid-container,
.single-travel_destination .grid-container {
  max-width: 1200px !important;
}
.bvd-destination .content-area,
.single-travel_destination .content-area {
  width: 100% !important;
  max-width: 100% !important;
}
.bvd-destination .entry-content,
.single-travel_destination .entry-content {
  max-width: 100% !important;
}

/* ─── FIX LOGO WRAPPING IN NAV ───────────────────────────── */
.site-branding { white-space: nowrap; }
.site-title { font-size: .95rem !important; line-height: 1.2 !important; }
.site-title a { 
  display: block !important;
  white-space: nowrap !important;
  color: #fff !important;
  font-weight: 800 !important;
}

/* ─── REMOVE WHITE CARD BOX PADDING ON DESTINATION ─────── */
.bvd-destination.separate-containers .inside-article {
  padding: 0 !important;
}
.bvd-destination .entry-header { display: none; }

/* ─── FIX TOUR CARD FLEX DIRECTION (override original style-bvd.css) ── */
.bvd-tour-card { 
  flex-direction: row !important; 
  align-items: flex-start !important; 
  gap: 16px !important;
}
.bvd-tour-card__image { 
  width: 110px !important; 
  height: 90px !important; 
  flex-shrink: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.bvd-tour-card__image img {
  width: 110px !important;
  height: 90px !important;
  object-fit: cover !important;
}
.bvd-tour-card__content { flex: 1 !important; min-width: 0 !important; }

/* ─── TOUR CARDS — COLUMN LAYOUT WITH PHOTO HEADER ──────── */
.bvd-tour-cards { 
  display: grid !important; 
  grid-template-columns: repeat(3, 1fr) !important; 
  gap: 18px !important; 
}
.bvd-tour-card { 
  flex-direction: column !important;
  padding: 0 !important;
}
.bvd-tour-card__image { 
  width: 100% !important; 
  height: 160px !important; 
  overflow: hidden !important;
  border-radius: 12px 12px 0 0 !important;
  flex-shrink: 0 !important;
}
.bvd-tour-card__image img { 
  width: 100% !important; 
  height: 160px !important; 
  object-fit: cover !important;
  transition: transform .3s ease !important;
}
.bvd-tour-card:hover .bvd-tour-card__image img { transform: scale(1.04) !important; }
.bvd-tour-card__content { 
  padding: 16px !important; 
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.bvd-tour-card__cta { margin-top: auto !important; }

@media (max-width: 900px) {
  .bvd-tour-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .bvd-tour-cards { grid-template-columns: 1fr !important; }
}

/* ─── HERO BANNER — FULL WIDTH PHOTO WITH OVERLAY ────────── */
.bvd-hero-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  width: 100%;
}
.bvd-hero-banner__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.bvd-hero-banner__placeholder {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
}
.bvd-hero-banner__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,37,64,.15) 0%,
    rgba(10,37,64,.45) 50%,
    rgba(10,37,64,.8) 100%
  );
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.bvd-hero-banner__content {
  padding: 48px 48px 52px;
  max-width: 800px;
  color: #fff;
}
.bvd-hero-banner__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  line-height: 1.1;
  margin-bottom: 8px;
  text-wrap: balance;
}
.bvd-hero-banner__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  font-weight: 500;
}
.bvd-hero-banner__stats {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.bvd-hero-stat {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.bvd-breadcrumb--light ol { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0 0 16px 0; }
.bvd-breadcrumb--light li { font-size: .78rem; color: rgba(255,255,255,.7); }
.bvd-breadcrumb--light li a { color: rgba(255,255,255,.8); text-decoration: none; }
.bvd-breadcrumb--light li a:hover { color: #fff; }
.bvd-breadcrumb--light li + li::before { content: "›"; margin-right: 4px; }
.bvd-breadcrumb--light [aria-current] { color: #fff; }
.bvd-btn--hero {
  display: inline-flex; align-items: center;
  background: var(--bvd-gold); color: #1A1A2E !important;
  font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,.5);
  transition: background .15s, transform .1s, box-shadow .15s;
}
.bvd-btn--hero:hover { background: #D97706 !important; box-shadow: 0 6px 24px rgba(245,158,11,.6); text-decoration: none !important; }
.bvd-btn--hero:active { transform: scale(0.97); }

/* ─── REMOVE DUPLICATE BREADCRUMB BELOW BANNER ──────────── */
.bvd-breadcrumb:not(.bvd-breadcrumb--light) { display: none; }

@media (max-width: 768px) {
  .bvd-hero-banner { height: 380px; }
  .bvd-hero-banner__content { padding: 28px 20px 32px; }
  .bvd-hero-banner__title { font-size: 1.9rem; }
  .bvd-hero-banner__stats { gap: 8px; }
  .bvd-hero-stat { font-size: .78rem; padding: 5px 10px; }
}

/* ─── HERO BANNER POSITION FIX — !important overrides ─────── */
section.bvd-hero-banner,
.bvd-hero-banner {
  position: relative !important;
  height: 520px !important;
  overflow: hidden !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  max-width: 100vw !important;
}
.bvd-hero-banner__img {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.bvd-hero-banner__overlay {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  background: linear-gradient(to bottom, rgba(10,37,64,.1) 0%, rgba(10,37,64,.5) 60%, rgba(10,37,64,.85) 100%) !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: flex-end !important;
}
.bvd-hero-banner__content {
  padding: 48px 64px 52px !important;
  max-width: 900px !important;
  color: #fff !important;
  position: relative !important;
  z-index: 2 !important;
}
.bvd-hero-banner__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.5) !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
}
.bvd-hero-banner__subtitle {
  font-size: 1.15rem !important;
  color: rgba(255,255,255,.9) !important;
  margin-bottom: 20px !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.4) !important;
}
@media (max-width: 768px) {
  section.bvd-hero-banner, .bvd-hero-banner { height: 380px !important; }
  .bvd-hero-banner__content { padding: 28px 24px 32px !important; }
  .bvd-hero-banner__title { font-size: 1.85rem !important; }
}
