/*
=============================================================
  BMpro Consulting Services - WordPress Custom CSS
  Theme file: assets/bmpro/bmpro-custom.css
  Already enqueued automatically via functions.php
  (consulting_bmpro_custom_assets) - no manual paste needed.

  v8 CHANGE NOTES (this revision):
  - Removed 3 separate, conflicting "page background" rule
    blocks that were fighting each other (light vs near-black
    navy). Only ONE clean, glowing-but-light treatment remains.
  - Removed 3 separate, conflicting #bm-li-notif style blocks
    (floating card / inline slot / dark slide-in panel) that
    were overriding one another. Replaced with ONE polished,
    auto-rotating LinkedIn carousel widget (see bottom of file).
  - Added a card/column alignment fix for Elementor rows so
    cards in the same row match height and sit flush.
  - Added "glow / shine" utilities (soft ambient glow blobs,
    hover glow, sweep-shine on buttons) instead of flat dark
    fills.
  - Added rules that immediately hide any native LinkedIn
    embed iframe/badge so a blank white box can never flash
    on screen while bmpro-custom.js removes it.
=============================================================
*/

/* ── GLOBAL TOKENS ───────────────────────────────────────── */
:root {
  --bm-navy:    #1a2b5e;
  --bm-blue:    #0a7abf;
  --bm-light:   #f4f7fb;
  --bm-white:   #ffffff;
  --bm-text:    #1c1c1c;
  --bm-muted:   #64748b;
  --bm-border:  #dbe6f0;
  --bm-gold:    #f5a623;
  --bm-radius:  14px;
  --bm-shadow:  0 4px 24px rgba(26,43,94,0.10);
  --bm-shadow-lg: 0 12px 48px rgba(26,43,94,0.16);
  --bm-glow-blue: rgba(10,122,191,0.30);
  --bm-glow-gold: rgba(245,166,35,0.30);
}

/* ── BODY & BASE ─────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: var(--bm-text);
  line-height: 1.75 !important;
  background:
    radial-gradient(circle at 9% 8%, rgba(10,122,191,0.16), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(245,166,35,0.16), transparent 28%),
    linear-gradient(180deg, #f6faff 0%, #e9f1fa 100%) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  line-height: 1.25 !important;
}
/* Default heading colour - only applied where we can be sure the
   background is light (our own components, and ordinary page/post
   content). Elementor sections that set their own background
   colour (e.g. a dark intro/CTA band) also set their own text
   colour in the page editor with higher selector specificity, so
   they are left alone and stay legible instead of turning
   navy-on-navy. */
#main-core h1, #main-core h2, #main-core h3, #main-core h4, #main-core h5, #main-core h6,
.bm-feature-card h4, .bm-partner-card h4, .bm-schedule-form-wrap h3, .bm-mandate-box strong,
.bm-timeline-org {
  color: var(--bm-navy);
}
.home #main-core h1, .home #main-core h2, .home #main-core h3,
.home #main-core h4, .home #main-core h5, .home #main-core h6 {
  color: inherit;
}

a { transition: color 0.2s ease, opacity 0.2s ease; }

img { max-width: 100%; height: auto; display: block; }

#content {
  background:
    linear-gradient(135deg, rgba(10,122,191,0.09) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(315deg, rgba(245,166,35,0.11) 0%, rgba(255,255,255,0) 32%) !important;
}

#content-core {
  position: relative;
}

#content-core::before {
  content: '';
  position: absolute;
  inset: 28px 0 auto auto;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(10,122,191,0.16);
  border-radius: 50%;
  transform: translateX(38%);
  pointer-events: none;
}

#content-core::after {
  content: '';
  position: absolute;
  left: -110px;
  bottom: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245,166,35,0.20);
  border-radius: 50%;
  pointer-events: none;
}

.page #main,
.single #main,
.archive #main,
.search #main {
  position: relative;
  z-index: 1;
}

.home #main-core {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.entry-title,
.page-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 28px !important;
}

.entry-title::after,
.page-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 4px;
  background: linear-gradient(90deg, var(--bm-gold), var(--bm-blue));
  border-radius: 999px;
}

.entry-content > p:first-of-type,
.page-content > p:first-of-type {
  font-size: 17px;
  color: #334155;
}

.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
  background: rgba(244,247,251,0.75);
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  padding: 20px 24px 20px 42px;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
/* IMPORTANT: the theme calls consulting_thinkup_input_sliderhome()
   (the big hero slider) *inside* the same <header> element as the
   logo/nav (see header.php). Making <header> or #site-header
   position:sticky - as an earlier revision of this file did -
   drags the entire hero banner along while scrolling and buries
   the page content under it. Don't touch <header>/#site-header
   positioning at all.

   The theme already ships its own dedicated sticky bar for just
   the logo+nav: #header-sticky, shown/hidden via the
   .header-sticky-active body class its own JS toggles on scroll
   (see style.css ~line 1279). We only need to polish that
   element's look, not invent a second sticky mechanism. */
#header-sticky {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 20px rgba(26,43,94,0.12) !important;
}

/* Nav links */
#header-links a,
.main-navigation a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--bm-text) !important;
  padding: 8px 15px !important;
  border-radius: 7px !important;
  transition: background 0.2s, color 0.2s !important;
}
#header-links a:hover,
.main-navigation a:hover {
  background: var(--bm-light) !important;
  color: var(--bm-blue) !important;
}

/* Keep the nav row itself aligned and evenly spaced -
   fixes the "menu items look randomly placed" issue when
   the Contact item is moved to the end (see functions.php). */
#header-links-inner {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}
#header-links-inner > ul {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
}

/* ── HERO / BANNER ───────────────────────────────────────── */
.hero-section,
.entry-header,
.page-header,
section.elementor-section:first-of-type,
.elementor-widget-wrap > .elementor-element:first-child {
  position: relative;
}

.hero-section h1,
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

/* ── SECTION LABELS / TAGS ───────────────────────────────── */
.bm-section-tag {
  display: inline-block;
  background: rgba(10,122,191,0.10);
  color: var(--bm-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── BUTTONS (global WordPress) ──────────────────────────── */
.wp-block-button__link,
.elementor-button,
a.button,
button[type="submit"],
input[type="submit"],
.btn {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: all 0.22s ease !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

/* "Shine" sweep on hover - a soft diagonal highlight glides
   across the button, giving buttons a glowing/polished feel
   instead of a flat dark fill. */
.wp-block-button__link::after,
.elementor-button::after,
a.button::after,
button[type="submit"]::after,
input[type="submit"]::after,
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.wp-block-button__link:hover::after,
.elementor-button:hover::after,
a.button:hover::after,
button[type="submit"]:hover::after,
input[type="submit"]:hover::after,
.btn:hover::after {
  left: 150%;
}

/* Primary blue button */
.elementor-button.elementor-button-primary,
a.btn-primary,
.btn-primary {
  background: var(--bm-blue) !important;
  border-color: var(--bm-blue) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px var(--bm-glow-blue) !important;
}
.elementor-button.elementor-button-primary:hover,
a.btn-primary:hover,
.btn-primary:hover {
  background: var(--bm-navy) !important;
  border-color: var(--bm-navy) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px var(--bm-glow-blue) !important;
}

/* ── SERVICE CARDS (Home & Services page) ────────────────── */
.elementor-widget-icon-box .elementor-icon-box-wrapper,
.service-card,
.elementor-column .elementor-widget-wrap > .elementor-element {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover lift + colour glow instead of plain shadow */
.elementor-widget-icon-box:hover .elementor-icon-box-wrapper {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 34px var(--bm-glow-blue), 0 0 26px var(--bm-glow-gold) !important;
}

.elementor-icon-box-icon .elementor-icon {
  color: var(--bm-blue) !important;
  transition: transform 0.3s ease !important;
}
.elementor-widget-icon-box:hover .elementor-icon-box-icon .elementor-icon {
  transform: scale(1.15) !important;
  color: var(--bm-navy) !important;
}

.elementor-icon-box-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bm-navy) !important;
  font-size: 18px !important;
}

.elementor-icon-box-description {
  color: var(--bm-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* ── STATS / COUNTER NUMBERS (Hero) ──────────────────────── */
.elementor-counter-number-wrapper,
.elementor-counter-number {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  color: var(--bm-blue) !important;
}
.elementor-counter-title {
  font-size: 12px !important;
  color: var(--bm-muted) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

/* ── LINKEDIN COPY STYLES (inline text, not the widget) ───── */
.elementor-widget-text-editor p,
.li-post-text {
  font-size: 14px !important;
  color: var(--bm-text);
  line-height: 1.7 !important;
}

.li-card-upgrade {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 24px;
  box-shadow: var(--bm-shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.li-card-upgrade::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0077b5, #00a0dc);
}
.li-card-upgrade:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg), 0 0 24px var(--bm-glow-blue);
}

/* ── TRAINING / RAZORPAY FORM ────────────────────────────── */
.bm-training-form-wrap {
  background: var(--bm-light);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--bm-border);
  max-width: 680px;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100% !important;
  padding: 11px 16px !important;
  border: 1.5px solid var(--bm-border) !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--bm-text) !important;
  background: #fff !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border-color: var(--bm-blue) !important;
  box-shadow: 0 0 0 3px rgba(10,122,191,0.12) !important;
}

/* Razorpay pay button */
#bm-pay-btn,
button.bm-razorpay-btn,
.razorpay-btn {
  width: 100%;
  padding: 15px 32px;
  background: var(--bm-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 6px 22px var(--bm-glow-blue);
}
#bm-pay-btn:hover,
button.bm-razorpay-btn:hover {
  background: var(--bm-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--bm-glow-blue);
}

/* ── SCHEDULE / CONTACT FORM (Contact page) ──────────────── */
.bm-schedule-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--bm-shadow-lg);
  border: 1px solid var(--bm-border);
  max-width: 720px;
  margin: 0 auto;
}

.bm-schedule-form-wrap h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 24px !important;
  color: var(--bm-navy) !important;
  margin-bottom: 6px !important;
}

.bm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .bm-form-row { grid-template-columns: 1fr; }
}

.bm-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.bm-form-group label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--bm-navy) !important;
}

/* ── LEADERSHIP CARDS ────────────────────────────────────── */
.elementor-widget-image img {
  border-radius: 12px !important;
  box-shadow: var(--bm-shadow) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.elementor-widget-image img:hover {
  transform: scale(1.03) !important;
  box-shadow: var(--bm-shadow-lg), 0 0 26px var(--bm-glow-blue) !important;
}

.bm-ceo-badge {
  display: inline-block;
  background: rgba(10,122,191,0.10);
  color: var(--bm-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.bm-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.bm-role-tag {
  background: var(--bm-light);
  border: 1px solid var(--bm-border);
  color: var(--bm-navy);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

/* ── PARTNERSHIPS PAGE ───────────────────────────────────── */
.bm-partner-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 32px;
  box-shadow: var(--bm-shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bm-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bm-shadow-lg), 0 0 24px var(--bm-glow-gold);
}
.bm-partner-card img {
  max-height: 70px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}
.bm-partner-card h4 {
  font-size: 17px !important;
  color: var(--bm-navy) !important;
  margin-bottom: 8px !important;
}
.bm-partner-card p {
  font-size: 14px !important;
  color: var(--bm-muted) !important;
  line-height: 1.65 !important;
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.elementor-accordion .elementor-accordion-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  color: var(--bm-navy) !important;
  font-size: 15px !important;
}
.elementor-accordion .elementor-tab-content {
  color: var(--bm-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}
.elementor-accordion-item {
  border: 1px solid var(--bm-border) !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}
.elementor-accordion .elementor-active .elementor-accordion-title {
  color: var(--bm-blue) !important;
}

/* ── PARTNERS STRIP (Home page) ─────────────────────────── */
.bm-partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
}
.bm-partner-pill {
  background: #fff;
  border: 1px solid var(--bm-border);
  color: var(--bm-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(26,43,94,0.06);
  transition: all 0.2s;
  cursor: default;
}
.bm-partner-pill:hover {
  background: var(--bm-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--bm-glow-blue);
}

/* ── ENGAGEMENT TIMELINE ─────────────────────────────────── */
.bm-timeline { max-width: 760px; margin: 0 auto; }
.bm-timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}
.bm-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px; top: 28px;
  width: 2px;
  height: calc(100% + 8px);
  background: var(--bm-border);
}
.bm-timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bm-blue);
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(10,122,191,0.14);
}
.bm-timeline-org {
  font-weight: 700;
  color: var(--bm-navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.bm-timeline-sub {
  font-size: 12px;
  color: var(--bm-muted);
  font-style: italic;
  margin-bottom: 8px;
}
.bm-timeline-desc {
  font-size: 14px;
  color: var(--bm-muted);
  line-height: 1.7;
}

/* ── GRC MANDATE BOX ─────────────────────────────────────── */
.bm-mandate-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border: 1px solid #ffe082;
  border-left: 5px solid var(--bm-gold);
  border-radius: var(--bm-radius);
  padding: 28px;
  margin: 28px 0;
}
.bm-mandate-box .bm-mandate-icon { font-size: 32px; flex-shrink: 0; }
.bm-mandate-box strong { display: block; color: var(--bm-navy); font-size: 16px; margin-bottom: 8px; }
.bm-mandate-box p { color: var(--bm-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* IIA Framework 3-column grid */
.bm-three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin: 28px 0;
  align-items: stretch;
}
.bm-feature-card {
  background: var(--bm-light);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 28px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bm-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px var(--bm-glow-blue);
}
.bm-feature-card.bm-featured {
  background: var(--bm-navy);
  border-color: var(--bm-navy);
}
.bm-feature-card.bm-featured h4,
.bm-feature-card.bm-featured p { color: rgba(255,255,255,0.82) !important; }
.bm-feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--bm-blue);
  margin-bottom: 10px;
}
.bm-feature-card.bm-featured .bm-feature-num { color: #7dd3fc; }
.bm-feature-card h4 { font-size: 16px !important; color: var(--bm-navy) !important; margin-bottom: 8px !important; }
.bm-feature-card p { font-size: 13px !important; color: var(--bm-muted) !important; line-height: 1.65 !important; margin: 0 !important; }
.bm-feature-card.bm-featured h4 { color: rgba(255,255,255,0.92) !important; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.bm-cta-banner {
  background: linear-gradient(135deg, var(--bm-navy) 0%, #0d3470 50%, var(--bm-blue) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px var(--bm-glow-blue);
}
.bm-cta-banner::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -80px; right: -60px;
}
.bm-cta-banner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--bm-glow-gold);
  filter: blur(40px);
  bottom: -70px; left: -50px;
}
.bm-cta-banner h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(22px,4vw,36px) !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  position: relative;
}
.bm-cta-banner p {
  color: rgba(255,255,255,0.80) !important;
  font-size: 16px !important;
  max-width: 520px;
  margin: 0 auto 28px !important;
  position: relative;
}
.bm-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.bm-cta-btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--bm-navy) !important;
  font-weight: 800;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.bm-cta-btn-primary:hover {
  background: var(--bm-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.35);
}
.bm-cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.bm-cta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bm-navy) !important;
  color: rgba(255,255,255,0.70) !important;
  padding: 48px 0 24px !important;
}
.site-footer a {
  color: rgba(255,255,255,0.65) !important;
  transition: color 0.2s !important;
}
.site-footer a:hover { color: #7dd3fc !important; }
.site-footer p { color: rgba(255,255,255,0.60) !important; }

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────── */
.bm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.bm-reveal.bm-visible {
  opacity: 1;
  transform: translateY(0);
}
.bm-reveal-delay-1 { transition-delay: 0.10s; }
.bm-reveal-delay-2 { transition-delay: 0.20s; }
.bm-reveal-delay-3 { transition-delay: 0.30s; }
.bm-reveal-delay-4 { transition-delay: 0.40s; }

/* =========================================================
   CARD / COLUMN ALIGNMENT FIX
   Root cause of "cards look misplaced": Elementor rows let
   columns size to their own content, so a row with a short
   card next to a tall card looks staggered/misaligned. These
   rules make every column in a row stretch to match the
   tallest card, and push each card's content to fill that
   height evenly, so tops and bottoms line up.
   ========================================================= */
.elementor-row,
.elementor-container,
.e-con-inner {
  align-items: stretch !important;
}
.elementor-column,
.e-con.e-child {
  display: flex !important;
}
.elementor-column > .elementor-widget-wrap,
.e-con.e-child > .elementor-widget-wrap {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
}
/* Let text/description blocks grow so footer elements (buttons,
   tags) line up at the same height across neighbouring cards */
.elementor-widget-wrap > .elementor-widget-icon-box,
.elementor-widget-wrap > .elementor-widget-text-editor {
  flex: 1 0 auto;
}
.elementor-widget-wrap > .elementor-widget-button {
  margin-top: auto !important;
}
.elementor-icon-box-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.elementor-icon-box-description {
  flex: 1;
}
/* Center short rows instead of letting them hug the left edge */
.elementor-row,
.bm-three-col {
  justify-content: center;
}

/* =========================================================
   GLOW / SHINE UTILITIES
   Used in place of the old flat near-black section fills.
   ========================================================= */
@keyframes bm-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--bm-glow-blue), 0 8px 26px rgba(26,43,94,0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(10,122,191,0.0), 0 8px 34px var(--bm-glow-blue); }
}
.bm-glow-soft {
  box-shadow: 0 10px 30px var(--bm-glow-blue);
}
.bm-glow-pulse {
  animation: bm-glow-pulse 2.6s ease-in-out infinite;
}

/* =========================================================
   AUTO-CONTRAST ON DARK SECTIONS
   .bm-dark-section is added by bmpro-custom.js to any
   structural Elementor section/container whose *actual
   rendered* background turns out to be dark. Forces legible
   light text on everything inside, no matter which Elementor
   widget type it is (heading, text editor, testimonial,
   icon box...) - fixes the "text I can barely read" issue at
   its root instead of patching one widget type at a time.
   ========================================================= */
.bm-dark-section,
.bm-dark-section p,
.bm-dark-section span,
.bm-dark-section li,
.bm-dark-section .elementor-testimonial-content,
.bm-dark-section .elementor-testimonial-job,
.bm-dark-section .elementor-icon-box-description {
  color: #dce7f2 !important;
}
.bm-dark-section h1,
.bm-dark-section h2,
.bm-dark-section h3,
.bm-dark-section h4,
.bm-dark-section h5,
.bm-dark-section h6,
.bm-dark-section .elementor-heading-title,
.bm-dark-section .elementor-testimonial-name,
.bm-dark-section .elementor-icon-box-title {
  color: #ffffff !important;
}
.bm-dark-section a:not(.elementor-button):not(.btn) {
  color: #7dd3fc;
}

/* ── LOGO FALLBACK (used when no Customizer logo is set on
   this WordPress install - see functions.php) ───────────── */
.bm-fallback-logo-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.bm-fallback-logo {
  display: block;
  flex-shrink: 0;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
#logo-sticky .bm-fallback-logo {
  height: 40px;
}
.bm-fallback-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.bm-fallback-site-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--bm-navy);
  white-space: nowrap;
}
.bm-fallback-site-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--bm-muted);
  white-space: nowrap;
}
/* Keep the sticky bar compact - title only, no tagline */
#logo-sticky .bm-fallback-site-tagline {
  display: none;
}
#logo-sticky .bm-fallback-site-title {
  font-size: 16px;
}
@media (max-width: 600px) {
  .bm-fallback-site-tagline {
    display: none;
  }
}

/* ── FINAL PAGE PALETTE (light, with ambient glow accents) ──
   This is the ONLY page-background rule block in this file.
   Earlier revisions had a second, near-black "final" block
   further down that silently overrode this one - that block
   has been removed so non-home pages stay light and glowing
   instead of turning dark. */
body,
body.page:not(.home),
body.single,
body.archive,
body.search {
  color: #26384a;
  background: #eef4f8 !important;
}

body.page:not(.home) #content,
body.single #content,
body.archive #content,
body.search #content {
  color: #26384a !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(10,122,191,0.22) 0 10%, transparent 10.4%),
    radial-gradient(circle at 82% 19%, rgba(245,166,35,0.22) 0 7%, transparent 7.4%),
    repeating-radial-gradient(circle at 91% 14%, transparent 0 54px, rgba(10,122,191,0.12) 55px 57px),
    linear-gradient(180deg, #eef5fb 0%, #e3edf6 100%) !important;
}

body.page:not(.home) #main-core,
body.single #main-core,
body.archive #main-core,
body.search #main-core {
  position: relative;
  color: #26384a;
  background: rgba(255,255,255,0.94);
  border: 1px solid #d8e3eb;
  box-shadow: 0 16px 42px rgba(42,73,95,0.10), 0 0 40px var(--bm-glow-blue);
  backdrop-filter: none;
}

body.page:not(.home) #main-core h1,
body.page:not(.home) #main-core h2,
body.page:not(.home) #main-core h3,
body.page:not(.home) #main-core h4,
body.single #main-core h1,
body.single #main-core h2,
body.single #main-core h3,
body.archive #main-core h1,
body.archive #main-core h2,
body.search #main-core h1,
body.search #main-core h2 {
  color: #17324a !important;
}

body.page:not(.home) #main-core p,
body.single #main-core p,
body.archive #main-core p,
body.search #main-core p {
  color: #43576a;
}

body.page:not(.home) .entry-content ul,
body.page:not(.home) .entry-content ol,
body.single .entry-content ul,
body.single .entry-content ol {
  color: #33495d;
  background: #f5f9fc;
  border-color: #d8e3eb;
}

body.page:not(.home) #content-core::before,
body.single #content-core::before,
body.archive #content-core::before,
body.search #content-core::before {
  border-color: rgba(10,122,191,0.18);
  box-shadow:
    0 0 0 58px rgba(10,122,191,0.035),
    0 0 0 116px rgba(10,122,191,0.022);
}

body.page:not(.home) #content-core::after,
body.single #content-core::after,
body.archive #content-core::after,
body.search #content-core::after {
  border-color: rgba(245,166,35,0.22);
  box-shadow: 0 0 0 44px rgba(245,166,35,0.032);
}

#section-home {
  display: none !important;
}

/* ── PAGE PHOTOGRAPHY ───────────────────────────────────── */
.bm-photo-filled {
  position: relative;
  display: block !important;
  min-height: 240px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0 !important;
  background: #e8eef3 !important;
  border: 1px solid #d5e0e8;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(35,64,84,0.12);
}

.bm-photo-filled > .elementor-widget-container {
  display: block;
  width: 100%;
  height: 100%;
}

.bm-page-photo {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 240px;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.bm-page-photo-panel {
  position: relative;
  display: block;
  aspect-ratio: 16 / 7;
  min-height: 260px;
  overflow: hidden;
  margin: 0 0 36px;
  padding: 0;
  background: #e8eef3;
  border: 1px solid #d5e0e8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(35,64,84,0.13);
}

.bm-page-photo-panel .bm-page-photo {
  min-height: 260px;
}

.bm-photo-advisory .bm-page-photo,
.bm-photo-services .bm-page-photo {
  object-position: center 42%;
}

.bm-photo-leadership .bm-page-photo {
  object-position: center 35%;
}

.bm-photo-partnerships .bm-page-photo {
  object-position: center 38%;
}

.bm-photo-contact .bm-page-photo {
  object-position: center 40%;
}

@media (max-width: 700px) {
  .bm-photo-filled,
  .bm-page-photo-panel {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .bm-page-photo {
    min-height: 210px;
  }
}

/* BMpro fallback homepage slider */
#slider .bmpro-slider-featured {
  text-align: left;
  padding-left: clamp(32px, 8vw, 140px);
  padding-right: clamp(24px, 8vw, 120px);
  max-width: 820px;
}

#slider .bmpro-slider-featured .featured-title,
#slider .bmpro-slider-featured .featured-excerpt {
  display: block;
  clear: both;
}

#slider .bmpro-slider-featured .featured-title {
  margin: 0 0 20px !important;
}

#slider .bmpro-slider-featured .featured-title span {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  display: block;
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(36px, 4.5vw, 64px);
  text-shadow: 0 3px 18px rgba(0,0,0,0.32);
}

#slider .bmpro-slider-featured .featured-excerpt {
  margin: 0 !important;
}

#slider .bmpro-slider-featured .featured-excerpt p {
  margin: 0 !important;
}

#slider .bmpro-slider-featured .featured-excerpt span {
  color: #e8f2fb;
  display: block;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}

/* ── MISC POLISH ─────────────────────────────────────────── */

/* Remove the "Test Mode" bar Razorpay adds */
.razorpay-payment-button ~ p { display: none; }

/* Consistent section padding - scoped to TOP-LEVEL sections only.
   The previous rule matched every .elementor-section including
   nested/inner sections, so padding stacked twice inside the
   same row and threw vertical alignment off. */
.elementor-top-section,
.e-con.e-parent {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
@media (max-width: 768px) {
  .elementor-top-section,
  .e-con.e-parent {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* Dividers */
hr, .wp-block-separator {
  border: none !important;
  border-top: 1px solid var(--bm-border) !important;
  margin: 40px 0 !important;
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--bm-blue) !important;
  padding: 16px 24px !important;
  background: var(--bm-light) !important;
  border-radius: 0 10px 10px 0 !important;
  font-style: italic !important;
  color: var(--bm-muted) !important;
}

/* =========================================================
   NATIVE LINKEDIN EMBED KILLER
   The "white box with white text" the brief describes is the
   official LinkedIn embed (badge/post iframe). It injects
   itself onto the page a moment AFTER load and before it
   finishes loading it just shows as a blank white rectangle.
   These rules hide it the instant it appears, before paint,
   so it never flashes - bmpro-custom.js also removes it
   from the DOM as a second layer of defence.
   ========================================================= */
iframe[src*="linkedin.com"],
.linkedin-embed,
.LI-profile-badge,
.li-embed,
blockquote.linkedin-post,
[data-li-widget],
[class*="linkedin-badge"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}

/* =========================================================
   LINKEDIN POST NOTIFICATION - auto-rotating carousel
   One single, consistent widget for every page (built by
   bmpro-custom.js / BM_LINKEDIN_POSTS array). Replaces the
   old static single-post panel and the dark slide-in panel.
   ========================================================= */
#bm-li-notif {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: 24px;
  width: 320px;
  max-width: calc(100vw - 28px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--bm-border);
  border-left: 4px solid var(--bm-blue);
  box-shadow: 0 14px 44px var(--bm-glow-blue), 0 2px 10px rgba(0,0,0,0.08);
  z-index: 99999;
  overflow: hidden;
  transform: translateY(140px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.68,-0.4,.27,1.3), opacity 0.4s ease;
}
#bm-li-notif.bm-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#bm-li-notif.bm-hide {
  transform: translateY(140px);
  opacity: 0;
  pointer-events: none;
}

#bm-li-notif .bm-notif-topbar {
  height: 4px;
  background: linear-gradient(90deg, #0a66c2, var(--bm-gold));
}

#bm-li-notif .bm-notif-inner {
  padding: 16px 16px 14px;
}

#bm-li-notif .bm-notif-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#bm-li-notif .bm-notif-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--bm-navy), var(--bm-blue));
  box-shadow: 0 0 0 3px rgba(10,122,191,0.14);
}

#bm-li-notif .bm-notif-meta {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
#bm-li-notif .bm-notif-meta strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 700;
  color: var(--bm-navy);
}
#bm-li-notif .bm-notif-meta span {
  display: block;
  font-size: 11px;
  color: var(--bm-muted);
}

#bm-li-notif .bm-notif-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: var(--bm-light);
  color: var(--bm-muted);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
#bm-li-notif .bm-notif-close:hover {
  color: var(--bm-navy);
  background: #e7edf4;
}

/* Sliding/fading carousel track - the "motion" the brief asks
   for: each post fades and slides in from the right every few
   seconds, replacing the previous one. */
#bm-li-notif .bm-notif-track {
  position: relative;
  min-height: 118px;
}
#bm-li-notif .bm-notif-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
#bm-li-notif .bm-notif-slide.bm-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

#bm-li-notif .bm-notif-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--bm-text);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#bm-li-notif .bm-notif-tags {
  font-size: 11px;
  font-weight: 600;
  color: var(--bm-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

#bm-li-notif .bm-notif-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bm-blue);
  color: #fff !important;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px var(--bm-glow-blue);
}
#bm-li-notif .bm-notif-cta:hover {
  background: var(--bm-navy) !important;
  box-shadow: 0 6px 20px var(--bm-glow-blue);
}
#bm-li-notif .bm-li-icon {
  font-weight: 800;
  font-size: 11px;
}

#bm-li-notif .bm-notif-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--bm-border);
}
#bm-li-notif .bm-notif-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bm-border);
  border-radius: 50%;
  background: #fff;
  color: var(--bm-navy);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#bm-li-notif .bm-notif-arrow:hover {
  background: var(--bm-light);
  color: var(--bm-blue);
}
#bm-li-notif .bm-notif-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
#bm-li-notif .bm-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bm-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
#bm-li-notif .bm-notif-dot.bm-active {
  background: var(--bm-blue);
  transform: scale(1.3);
}

@media (max-width: 540px) {
  #bm-li-notif {
    right: 10px;
    left: 10px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}

/* =========================================================
   BMPro implementation pass: compact Elementor layouts,
   editable training cards, floating schedule notification,
   Razorpay registration modal, and dynamic post cards.
   ========================================================= */

body.elementor-page .elementor-section.elementor-top-section,
body.elementor-page .e-con.e-parent {
  padding-top: clamp(42px, 5vw, 68px) !important;
  padding-bottom: clamp(42px, 5vw, 68px) !important;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.elementor-column-gap-extended > .elementor-column > .elementor-element-populated,
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated,
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
  padding-left: clamp(10px, 1.4vw, 18px) !important;
  padding-right: clamp(10px, 1.4vw, 18px) !important;
}

.elementor-widget:not(:last-child) {
  margin-bottom: clamp(12px, 1.8vw, 22px) !important;
}

.entry-content details,
.page-content details,
.bm-content-accordion details {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(26,43,94,0.06);
  margin: 12px 0;
  overflow: hidden;
}

.entry-content summary,
.page-content summary,
.bm-content-accordion summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--bm-navy);
  padding: 16px 18px;
}

.entry-content details > *:not(summary),
.page-content details > *:not(summary),
.bm-content-accordion details > *:not(summary) {
  padding-left: 18px;
  padding-right: 18px;
}

.bm-training-grid,
.bm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.bm-training-card,
.bm-related-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(26,43,94,0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bm-training-card h3,
.bm-related-card h3 {
  font-size: 19px !important;
  line-height: 1.3 !important;
  margin: 8px 0 10px !important;
}

.bm-training-ad-image,
.bm-training-modal-ad {
  width: 100%;
  border-radius: 8px !important;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(26,43,94,0.12) !important;
}

.bm-training-ad-image {
  aspect-ratio: 4 / 3.15;
  margin: 0 0 16px;
}

.bm-training-modal-ad {
  aspect-ratio: 39 / 50;
  margin: 0 0 18px;
  object-fit: contain;
  background: #f6f9fc;
}

.bm-training-card p,
.bm-related-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.bm-training-card ul {
  background: #f6f9fc !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  margin: 12px 0 18px !important;
  list-style: none !important;
}

.bm-training-card li {
  font-size: 13px;
  color: #43576a;
  margin: 4px 0;
}

.bm-training-kicker,
.bm-training-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(10,122,191,0.10);
  color: var(--bm-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.bm-training-register,
.bm-training-card .bm-training-register {
	text-decoration: none !important;
	display: block;
	text-align: center;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  background: var(--bm-blue);
  color: #fff;
  font-weight: 800;
  padding: 11px 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10,122,191,0.24);
}

.bm-training-register:hover {
  background: var(--bm-navy);
  transform: translateY(-1px);
}

.bm-training-register--disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.bm-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px !important;
  margin-bottom: 14px;
}

.bm-related-card a {
  color: var(--bm-navy);
  text-decoration: none;
}

#bm-training-notif {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: 24px;
  width: 336px;
  max-width: calc(100vw - 28px);
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(26,43,94,0.18);
  z-index: 99999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(130px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
}

#bm-training-notif.bm-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#bm-training-notif.bm-hide {
  opacity: 0;
  transform: translateY(130px);
  pointer-events: none;
}

.bm-training-topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--bm-blue), var(--bm-gold));
}

.bm-training-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--bm-border);
}

.bm-training-head strong {
  display: block;
  color: var(--bm-navy);
  font-size: 14px;
}

.bm-training-head span {
  display: block;
  color: var(--bm-muted);
  font-size: 12px;
}

.bm-training-close {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  color: var(--bm-muted);
  background: #eef4f8;
  cursor: pointer;
}

.bm-training-track {
  position: relative;
  min-height: 472px;
}

.bm-training-notif-card {
  display: none;
  padding: 16px;
}

.bm-training-notif-card.bm-active {
  display: block;
}

.bm-training-notif-image {
  width: 100%;
  aspect-ratio: 39 / 50;
  display: block;
  object-fit: contain;
  background: #f6f9fc;
  border: 1px solid #e2ebf3;
  border-radius: 8px !important;
  margin: 0 0 12px;
}

.bm-training-notif-card h3 {
  color: var(--bm-navy) !important;
  font-size: 17px !important;
  line-height: 1.28 !important;
  margin: 10px 0 12px !important;
}

.bm-training-notif-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.bm-training-notif-card dl div {
  background: #f6f9fc;
  border: 1px solid #e2ebf3;
  border-radius: 8px;
  padding: 8px;
}

.bm-training-notif-card dt {
  color: var(--bm-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 2px;
}

.bm-training-notif-card dd {
  color: #26384a;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

.bm-training-trainer {
  color: #43576a !important;
  font-size: 12px !important;
  margin: 0 0 12px !important;
}

.bm-training-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--bm-border);
}

.bm-training-nav button {
  width: 25px;
  height: 25px;
  border: 1px solid var(--bm-border);
  border-radius: 50%;
  background: #fff;
  color: var(--bm-navy);
  cursor: pointer;
}

.bm-training-nav > div {
  display: flex;
  gap: 6px;
}

.bm-training-dot {
  width: 7px !important;
  height: 7px !important;
  padding: 0 !important;
  background: #c9d6e2 !important;
}

.bm-training-dot.bm-active {
  background: var(--bm-blue) !important;
}

#bm-training-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(12,24,39,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.bm-training-modal-card {
  width: min(920px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  padding: 28px;
}

.bm-training-modal-card h2 {
  color: var(--bm-navy) !important;
  font-size: 24px !important;
  margin: 12px 0 8px !important;
}

.bm-training-modal-meta {
  color: var(--bm-muted) !important;
  font-size: 14px !important;
  margin-bottom: 18px !important;
}

.bm-training-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #eef4f8;
  color: var(--bm-muted);
  cursor: pointer;
}

.bm-training-form {
  display: grid;
  gap: 12px;
}

.bm-training-form label {
  color: var(--bm-navy);
  font-size: 13px;
  font-weight: 700;
}

.bm-training-form label span {
  color: var(--bm-muted);
  font-weight: 500;
}

.bm-training-form button[type="submit"] {
  border: 0;
  border-radius: 8px;
  background: var(--bm-blue);
  color: #fff;
  font-weight: 800;
  padding: 13px 16px;
}

.bm-training-form-status {
  min-height: 18px;
  margin: 0 !important;
  color: var(--bm-muted) !important;
  font-size: 13px !important;
}

.bm-training-form-status.bm-error {
  color: #dc2626 !important;
}

.bm-townscript-widget {
  width: 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  background: #f6f9fc;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  padding: 10px;
}

.bm-townscript-widget iframe {
  width: 80% !important;
  max-width: 760px;
  min-height: 600px;
  border: 0;
  background: #fff;
}

.bm-training-success {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12,24,39,0.35);
}

.bm-training-success > div {
  width: min(420px, 100%);
  background: #fff;
  border-top: 5px solid #16a34a;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  padding: 28px;
  text-align: center;
}

.bm-training-success strong {
  color: var(--bm-navy);
  font-size: 22px;
  display: block;
}

.bm-training-success small {
  color: var(--bm-muted);
  display: block;
  margin: 10px 0 18px;
}

.bm-training-success button {
  border: 0;
  border-radius: 8px;
  background: var(--bm-blue);
  color: #fff;
  font-weight: 800;
  padding: 10px 22px;
}

.bm-payment-link-return,
.bm-confirmation-note,
.bm-confirmation-warning {
  background: #f6f9fc;
  border: 1px solid #dce7f0;
  border-radius: 8px;
  padding: 14px;
}

.bm-payment-link-return {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.bm-payment-link-return strong {
  color: var(--bm-navy);
}

.bm-payment-link-return p,
.bm-payment-link-return small {
  color: var(--bm-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.bm-payment-link-return button,
.bm-confirmation-close,
.bm-confirmation-print {
  border: 0;
  border-radius: 8px;
  background: var(--bm-navy);
  color: #fff;
  font-weight: 800;
  padding: 11px 16px;
  cursor: pointer;
}

.bm-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bm-confirmation-print {
  background: var(--bm-blue);
}

.bm-confirmation-card {
  width: min(680px, 100%) !important;
}

.bm-confirmation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.bm-confirmation-grid div {
  background: #f6f9fc;
  border: 1px solid #dce7f0;
  border-radius: 8px;
  padding: 11px 12px;
  min-width: 0;
}

.bm-confirmation-grid span {
  display: block;
  color: var(--bm-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.bm-confirmation-grid strong {
  display: block;
  color: var(--bm-navy);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.bm-confirmation-grid a {
  color: var(--bm-blue);
}

.bm-confirmation-note {
  margin-bottom: 12px;
}

.bm-confirmation-note strong {
  color: var(--bm-navy);
}

.bm-confirmation-note p,
.bm-confirmation-warning {
  color: #52677a !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  margin: 6px 0 0 !important;
}

.bm-confirmation-warning {
  background: #fff7ed;
  border-color: #fed7aa;
  margin-bottom: 12px !important;
}

@media (max-width: 860px) {
  .bm-training-grid,
  .bm-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bm-training-grid,
  .bm-related-grid {
    grid-template-columns: 1fr;
  }

  #bm-training-notif {
    left: 10px;
    right: 10px;
    bottom: 12px;
    width: auto;
    max-width: none;
  }

  .bm-training-track {
    min-height: 230px;
  }

  .bm-training-modal-card {
    padding: 22px;
  }

  .bm-confirmation-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }
  #bm-training-modal,
  #bm-training-modal *,
  .bm-confirmation-card,
  .bm-confirmation-card * {
    visibility: visible !important;
  }
  #bm-training-modal {
    position: static !important;
    inset: auto !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .bm-confirmation-card {
    width: 100% !important;
    max-height: none !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  .bm-training-modal-close,
  .bm-confirmation-actions {
    display: none !important;
  }
}

/* Homepage side layout: LinkedIn post notification on the left,
   training signup/payment notification on the right - docked just
   outside the centered content column (the theme's content width is
   1170px, so half of that is 585px from centre) rather than glued to
   the bare viewport corner. On a wide enough screen this means both
   widgets sit fully beside the hero image/slider instead of overlapping
   its corners, which also keeps the lower part of the hero - where the
   animated line/circle artwork lives - unobstructed. On narrower
   desktop widths, where the content column leaves less side margin
   than the widget needs, max() gracefully falls back to a small fixed
   inset from the edge instead of pushing the widget off-screen. */
body.home #bm-li-notif,
body.front-page #bm-li-notif,
body.page-template-template-homepage #bm-li-notif {
  left: max(10px, calc(50% - 585px - 226px));
  right: auto;
  bottom: 24px;
}

body.home #bm-training-notif,
body.front-page #bm-training-notif,
body.page-template-template-homepage #bm-training-notif {
  left: auto;
  right: max(10px, calc(50% - 585px - 230px));
  bottom: 24px;
}

@media (max-height: 760px) and (min-width: 621px) {
  body.home #bm-li-notif,
  body.front-page #bm-li-notif,
  body.page-template-template-homepage #bm-li-notif {
    bottom: 24px;
  }
}

@media (max-width: 620px) {
  body.home #bm-li-notif,
  body.front-page #bm-li-notif,
  body.page-template-template-homepage #bm-li-notif {
    top: 76px;
    bottom: auto;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
  }

  body.home #bm-training-notif,
  body.front-page #bm-training-notif,
  body.page-template-template-homepage #bm-training-notif {
    bottom: 12px;
  }
}

/* Slimmer homepage side widgets so the hero imagery remains visible.
   Sized down a further notch from the first pass - both widgets were
   still covering too much of the hero artwork/animation behind them.
   Wrapped in a min-width guard so these fixed pixel widths can never
   out-specificity the mobile width:auto fallback above. */
@media (min-width: 621px) {
body.home #bm-li-notif,
body.front-page #bm-li-notif,
body.page-template-template-homepage #bm-li-notif {
  width: 204px;
}

body.home #bm-li-notif .bm-notif-inner {
  padding: 10px 10px 8px;
}

body.home #bm-li-notif .bm-notif-track,
body.front-page #bm-li-notif .bm-notif-track,
body.page-template-template-homepage #bm-li-notif .bm-notif-track {
  min-height: 92px;
}

body.home #bm-li-notif .bm-notif-avatar,
body.front-page #bm-li-notif .bm-notif-avatar,
body.page-template-template-homepage #bm-li-notif .bm-notif-avatar {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

body.home #bm-li-notif .bm-notif-text,
body.front-page #bm-li-notif .bm-notif-text,
body.page-template-template-homepage #bm-li-notif .bm-notif-text {
  font-size: 11px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

body.home #bm-li-notif .bm-notif-tags,
body.front-page #bm-li-notif .bm-notif-tags,
body.page-template-template-homepage #bm-li-notif .bm-notif-tags {
  font-size: 10px;
}

body.home #bm-training-notif,
body.front-page #bm-training-notif,
body.page-template-template-homepage #bm-training-notif {
  width: 208px;
}

body.home .bm-training-head,
body.front-page .bm-training-head,
body.page-template-template-homepage .bm-training-head {
  padding: 9px 12px 7px;
}

body.home .bm-training-notif-card,
body.front-page .bm-training-notif-card,
body.page-template-template-homepage .bm-training-notif-card {
  padding: 11px;
}

body.home .bm-training-track,
body.front-page .bm-training-track,
body.page-template-template-homepage .bm-training-track {
  min-height: 196px;
}

body.home .bm-training-notif-card h3,
body.front-page .bm-training-notif-card h3,
body.page-template-template-homepage .bm-training-notif-card h3 {
  font-size: 14px !important;
  margin: 6px 0 8px !important;
}

body.home .bm-training-notif-card dl,
body.front-page .bm-training-notif-card dl,
body.page-template-template-homepage .bm-training-notif-card dl {
  gap: 5px;
}

body.home .bm-training-notif-card dl div,
body.front-page .bm-training-notif-card dl div,
body.page-template-template-homepage .bm-training-notif-card dl div {
  padding: 6px 5px;
}

body.home .bm-training-notif-card dt,
body.front-page .bm-training-notif-card dt,
body.page-template-template-homepage .bm-training-notif-card dt {
  font-size: 8.5px;
}

body.home .bm-training-notif-card dd,
body.front-page .bm-training-notif-card dd,
body.page-template-template-homepage .bm-training-notif-card dd {
  font-size: 10.5px;
}

body.home .bm-training-trainer,
body.front-page .bm-training-trainer,
body.page-template-template-homepage .bm-training-trainer {
  font-size: 11px !important;
  margin: 0 0 9px !important;
}

body.home .bm-training-nav,
body.front-page .bm-training-nav,
body.page-template-template-homepage .bm-training-nav {
  padding: 7px 12px 8px;
}
} /* end @media (min-width: 621px) */


.bm-pptx-insights {
  margin: 0;
  padding: clamp(48px, 6vw, 78px) 0;
  background: linear-gradient(180deg, rgba(238,245,251,0.94), rgba(255,255,255,0.94));
}

.bm-pptx-insights-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.bm-pptx-insights-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.bm-pptx-insights-head h2 {
  color: var(--bm-navy) !important;
  font-size: clamp(26px, 3.4vw, 42px) !important;
  margin: 0 0 10px !important;
}

.bm-pptx-insights-head p {
  color: #52677a !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.bm-pptx-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bm-pptx-insight-card {
  background: #fff;
  border: 1px solid #dce7f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(26,43,94,0.08);
  overflow: hidden;
}

.bm-pptx-insight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.45s ease;
}

.bm-pptx-insight-card:hover img {
  transform: scale(1.09);
}

.bm-pptx-insight-card div {
  padding: 16px 17px 18px;
}

.bm-pptx-insight-card h3 {
  color: var(--bm-navy) !important;
  font-size: 17px !important;
  margin: 0 0 8px !important;
}

.bm-pptx-insight-card p {
  color: #52677a !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

@media (max-width: 920px) {
  .bm-pptx-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.home #bm-li-notif,
  body.front-page #bm-li-notif,
  body.page-template-template-homepage #bm-li-notif,
  body.home #bm-training-notif,
  body.front-page #bm-training-notif,
  body.page-template-template-homepage #bm-training-notif {
    width: auto;
  }

  .bm-pptx-insights-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOMEPAGE NOTIFICATION BAND - [bmpro_home_notifications]
   Elementor-friendly inline replacement for floating cards.
   Place this shortcode below [bmpro_impact_flipbook].
   ========================================================= */
.bm-home-notifications {
  padding: clamp(42px, 5vw, 70px) 0;
  background: #f7fafc;
  border-top: 1px solid #e3edf5;
  border-bottom: 1px solid #e3edf5;
}

.bm-home-notifications-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.bm-home-notifications-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.bm-home-notifications-head h2 {
  color: var(--bm-navy) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.18 !important;
  margin: 10px 0 10px !important;
}

.bm-home-notifications-head p {
  color: #52677a !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.bm-home-notifications-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.bm-home-notifications #bm-li-notif,
.bm-home-notifications .bm-li-inline-notif {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(26,43,94,0.10);
}

.bm-home-notifications #bm-li-notif.bm-hide {
  opacity: 1 !important;
  transform: none !important;
}

.bm-home-notifications #bm-li-notif .bm-notif-inner {
  padding: clamp(16px, 2vw, 22px);
}

.bm-home-notifications #bm-li-notif .bm-notif-track {
  min-height: 180px;
}

.bm-home-notifications #bm-li-notif .bm-notif-avatar {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.bm-home-notifications #bm-li-notif .bm-notif-meta strong {
  font-size: 14px;
  white-space: normal;
}

.bm-home-notifications #bm-li-notif .bm-notif-meta span {
  font-size: 11.5px;
}

.bm-home-notifications #bm-li-notif .bm-notif-text {
  color: #24384c;
  display: block;
  overflow: visible;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.bm-home-notifications #bm-li-notif .bm-notif-tags {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  font-size: 11.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bm-home-notifications #bm-li-notif .bm-notif-cta {
  font-size: 12.5px;
  padding: 8px 14px;
}

.bm-home-notifications #bm-li-notif .bm-notif-header {
  margin-bottom: 10px;
}

.bm-home-notifications #bm-li-notif .bm-notif-nav {
  margin-top: 12px;
}

.bm-home-notifications .bm-training-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.bm-home-notifications .bm-training-card {
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 16px 38px rgba(26,43,94,0.10);
}

.bm-home-notifications .bm-training-ad-image {
  aspect-ratio: 16 / 10;
  max-height: 300px;
  object-fit: contain;
  background: #f6f9fc;
  border: 1px solid #e2ebf3;
  margin-bottom: 14px;
}

.bm-home-notifications .bm-training-card h3 {
  font-size: clamp(18px, 1.9vw, 23px) !important;
  line-height: 1.2 !important;
}

.bm-home-notifications .bm-training-card p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}

.bm-home-notifications .bm-training-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 12px !important;
}

.bm-home-notifications .bm-training-card li {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.bm-home-notifications .bm-training-register {
  width: 100%;
  font-size: 13.5px;
  padding: 12px 18px;
}

@media (max-width: 920px) {
  .bm-home-notifications-grid {
    grid-template-columns: 1fr;
  }

  .bm-home-notifications #bm-li-notif .bm-notif-track {
    min-height: 160px;
  }
}

@media (max-width: 620px) {
  .bm-home-notifications-inner {
    width: min(100% - 28px, 1140px);
  }

  .bm-home-notifications .bm-training-card ul {
    grid-template-columns: 1fr;
  }

  .bm-home-notifications #bm-li-notif .bm-notif-track {
    min-height: 210px;
  }
}

/* =========================================================
   LEADERSHIP & ADVISORY BOARD - [bmpro_leadership_team]
   ========================================================= */
.bm-leadership-team {
  margin: 0;
  padding: clamp(48px, 6vw, 78px) 0;
}

.bm-leadership-team-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.bm-leadership-team-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.bm-leadership-team-head h2 {
  font-size: clamp(26px, 3vw, 34px) !important;
  margin: 10px 0 12px !important;
}

.bm-leadership-team-head p {
  color: var(--bm-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.bm-leadership-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.bm-leader-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  box-shadow: var(--bm-shadow);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.bm-leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bm-shadow-lg), 0 0 24px var(--bm-glow-blue);
}

.bm-leader-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.bm-leader-card:hover img {
  transform: scale(1.07);
}

.bm-leader-card-body {
  padding: 20px 22px 24px;
}

.bm-leader-card-body h3 {
  font-size: 18px !important;
  color: var(--bm-navy) !important;
  margin: 0 0 4px !important;
}

.bm-leader-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bm-blue);
  margin-bottom: 10px;
}

.bm-leader-card-body p {
  font-size: 13.5px !important;
  color: var(--bm-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

@media (max-width: 860px) {
  .bm-leadership-team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* =========================================================
   KVAT & CO. PARTNERSHIP FEATURE - [bmpro_kvat_partnership]
   ========================================================= */
.bm-partnership-feature {
  margin: 0;
  padding: clamp(40px, 5vw, 64px) 0;
}

.bm-partnership-feature-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  box-shadow: var(--bm-shadow);
  overflow: hidden;
}

.bm-partnership-feature-media {
  overflow: hidden;
}

.bm-partnership-feature-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.bm-partnership-feature-inner:hover .bm-partnership-feature-media img {
  transform: scale(1.06);
}

.bm-partnership-feature-body {
  padding: 28px 32px 28px 0;
}

.bm-partnership-feature-body h2 {
  font-size: clamp(22px, 2.6vw, 28px) !important;
  margin: 10px 0 14px !important;
}

.bm-partnership-feature-body p {
  color: var(--bm-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 720px) {
  .bm-partnership-feature-inner {
    grid-template-columns: 1fr;
  }
  .bm-partnership-feature-body {
    padding: 4px 24px 28px;
  }
}

/* =========================================================
   Preserved homepage visual polish
   This layer deliberately styles the existing Elementor content only;
   it does not replace, hide, reorder or generate homepage sections.
   ========================================================= */
body.home.bmpro-premium-ui #main-core {
  background:
    radial-gradient(circle at 9% 28%, rgba(10,122,191,0.055), transparent 26rem),
    radial-gradient(circle at 92% 58%, rgba(213,166,64,0.07), transparent 24rem);
}

body.home.bmpro-premium-ui .elementor-widget-heading .elementor-heading-title {
  letter-spacing: -0.018em;
}

body.home.bmpro-premium-ui .bm-feature-card,
body.home.bmpro-premium-ui .bm-training-card,
body.home.bmpro-premium-ui .bm-related-card,
body.home.bmpro-premium-ui .bm-pptx-insight-card,
body.home.bmpro-premium-ui .bm-leader-card,
body.home.bmpro-premium-ui .bm-partner-card {
  border-color: rgba(26,43,94,0.12);
  box-shadow: 0 10px 28px rgba(26,43,94,0.08);
  overflow: hidden;
}

body.home.bmpro-premium-ui .bm-feature-card,
body.home.bmpro-premium-ui .bm-training-card,
body.home.bmpro-premium-ui .bm-related-card,
body.home.bmpro-premium-ui .bm-partner-card {
  position: relative;
}

body.home.bmpro-premium-ui .bm-feature-card::before,
body.home.bmpro-premium-ui .bm-training-card::before,
body.home.bmpro-premium-ui .bm-related-card::before,
body.home.bmpro-premium-ui .bm-partner-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--bm-blue), #65c8ef, var(--bm-gold));
  opacity: 0;
  transition: opacity var(--bm-ease);
}

body.home.bmpro-premium-ui .bm-feature-card:hover::before,
body.home.bmpro-premium-ui .bm-training-card:hover::before,
body.home.bmpro-premium-ui .bm-related-card:hover::before,
body.home.bmpro-premium-ui .bm-partner-card:hover::before {
  opacity: 1;
}

body.home.bmpro-premium-ui .bm-pptx-insight-card img,
body.home.bmpro-premium-ui .bm-related-card img,
body.home.bmpro-premium-ui .bm-leader-card img {
  transition: transform 360ms ease, filter 360ms ease;
}

body.home.bmpro-premium-ui .bm-pptx-insight-card:hover img,
body.home.bmpro-premium-ui .bm-related-card:hover img,
body.home.bmpro-premium-ui .bm-leader-card:hover img {
  filter: saturate(1.06) contrast(1.02);
}

body.home.bmpro-premium-ui .elementor-button,
body.home.bmpro-premium-ui .button {
  transition: transform var(--bm-ease), box-shadow var(--bm-ease), filter var(--bm-ease);
}

body.home.bmpro-premium-ui .elementor-button:hover,
body.home.bmpro-premium-ui .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26,43,94,0.18);
  filter: saturate(1.08);
}

@media (max-width: 767px) {
  body.home.bmpro-premium-ui #main-core {
    background-size: 28rem 28rem, 24rem 24rem;
  }

  body.home.bmpro-premium-ui .bm-feature-card,
  body.home.bmpro-premium-ui .bm-training-card,
  body.home.bmpro-premium-ui .bm-related-card,
  body.home.bmpro-premium-ui .bm-pptx-insight-card,
  body.home.bmpro-premium-ui .bm-leader-card,
  body.home.bmpro-premium-ui .bm-partner-card {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home.bmpro-premium-ui .bm-pptx-insight-card img,
  body.home.bmpro-premium-ui .bm-related-card img,
  body.home.bmpro-premium-ui .bm-leader-card img,
  body.home.bmpro-premium-ui .elementor-button,
  body.home.bmpro-premium-ui .button {
    transition: none;
  }
}

/* ── 2026 accessibility and interaction layer ─────────────── */
:focus-visible { outline: 3px solid var(--bm-gold) !important; outline-offset: 3px; }

.bm-colour-mode {
  width: 38px; height: 38px; margin-left: 8px; display: inline-grid; place-items: center;
  border: 1px solid rgba(10,122,191,.24); border-radius: 50%; background: rgba(255,255,255,.76);
  color: var(--bm-navy); font-size: 19px; line-height: 1; cursor: pointer;
  box-shadow: 0 5px 16px rgba(26,43,94,.10);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.bm-colour-mode:hover { transform: translateY(-2px) rotate(12deg); box-shadow: 0 9px 22px rgba(26,43,94,.18); }

/* Child menu items become a roomy glass mega panel without changing menu content. */
#header-links .menu-item-has-children { position: relative; }
#header-links .menu-item-has-children > ul {
  display: grid !important; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 3px;
  min-width: min(520px, 72vw); padding: 12px !important; border: 1px solid rgba(255,255,255,.58) !important;
  border-radius: 16px !important; background: rgba(255,255,255,.88) !important;
  box-shadow: 0 20px 48px rgba(26,43,94,.18) !important;
  backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%);
}
#header-links .menu-item-has-children > ul a { display: block; min-height: 44px; padding: 11px 12px !important; }

/* Testimonial widgets get a calm, elevated carousel-card treatment. */
.elementor-testimonial,
.elementor-testimonial__content,
.elementor-testimonial-wrapper {
  border-radius: 18px;
}
.elementor-testimonial__content {
  position: relative; background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.64);
  box-shadow: 0 14px 36px rgba(26,43,94,.10); backdrop-filter: blur(12px); padding: 24px;
}
.elementor-testimonial__content::before { content: '“'; color: var(--bm-gold); font: 800 42px/0.7 Georgia, serif; }

body.bm-user-dark { color-scheme: dark; color: #d8e4f0; background: #0d1730 !important; }
body.bm-user-dark #content,
body.bm-user-dark #content-core { background: #0d1730 !important; }
body.bm-user-dark .entry-content > p:first-of-type,
body.bm-user-dark .page-content > p:first-of-type { color: #bdcce0; }
body.bm-user-dark .bm-colour-mode,
body.bm-user-dark #header-sticky,
body.bm-user-dark .elementor-testimonial__content { background: rgba(20,35,63,.88) !important; color: #eff6ff !important; border-color: rgba(148,190,228,.22) !important; }
body.bm-user-dark #header-links a,
body.bm-user-dark .main-navigation a,
body.bm-user-dark #main-core h1,
body.bm-user-dark #main-core h2,
body.bm-user-dark #main-core h3,
body.bm-user-dark #main-core h4,
body.bm-user-dark #main-core h5,
body.bm-user-dark #main-core h6 { color: #f7fbff !important; }
body.bm-user-dark .bm-feature-card:not(.bm-featured),
body.bm-user-dark .bm-training-card,
body.bm-user-dark .bm-related-card,
body.bm-user-dark .bm-blog-cta { background: #172848 !important; border-color: #2d4b72 !important; }
body.bm-user-dark .bm-feature-card p,
body.bm-user-dark .bm-related-card p,
body.bm-user-dark .bm-blog-cta p { color: #c3d1e2 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ── Elementor page geometry: shared in the editor and frontend ── */
.bmpro-elementor-page #content,
.bmpro-elementor-page #content-core,
.bmpro-elementor-page #main,
.bmpro-elementor-page #main-core {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}
.bmpro-elementor-page #sidebar,
.bmpro-elementor-page .sidebar,
.bmpro-elementor-page #main + aside { display: none !important; }
.bmpro-elementor-page .elementor-section > .elementor-container,
.bmpro-elementor-page .e-con.e-parent > .e-con-inner,
.bmpro-elementor-page .e-con.e-parent > .elementor-container {
  width: min(1200px, calc(100% - 48px)) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
}
.bmpro-elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
  margin-inline: auto !important;
}
.bmpro-elementor-page .elementor-widget-container,
.bmpro-elementor-page .elementor-widget-wrap { min-width: 0; }
.bmpro-elementor-page .elementor-heading-title,
.bmpro-elementor-page .bm-section-tag { overflow-wrap: anywhere; }

/* Tablet: keep content centred and collapse multi-column content gracefully. */
@media (max-width: 1024px) {
  .bmpro-elementor-page .elementor-section > .elementor-container,
  .bmpro-elementor-page .e-con.e-parent > .e-con-inner,
  .bmpro-elementor-page .e-con.e-parent > .elementor-container {
    width: min(100% - 40px, 900px) !important;
  }
  .bmpro-elementor-page .elementor-container,
  .bmpro-elementor-page .e-con { gap: clamp(16px, 3vw, 28px); }
  .bmpro-elementor-page .elementor-column { min-width: 0; }
  .bmpro-elementor-page .bm-feature-card,
  .bmpro-elementor-page .bm-training-card,
  .bmpro-elementor-page .bm-related-card { height: 100%; }
}

/* Phones: avoid horizontal scroll, maintain comfortable tap targets and use one-column layouts. */
@media (max-width: 767px) {
  html, body { overflow-x: clip; }
  .bmpro-elementor-page .elementor-section > .elementor-container,
  .bmpro-elementor-page .e-con.e-parent > .e-con-inner,
  .bmpro-elementor-page .e-con.e-parent > .elementor-container {
    width: calc(100% - 28px) !important;
  }
  .bmpro-elementor-page .elementor-container,
  .bmpro-elementor-page .elementor-row,
  .bmpro-elementor-page .e-con.e-parent { flex-wrap: wrap !important; }
  .bmpro-elementor-page .elementor-column,
  .bmpro-elementor-page .e-con > .e-con,
  .bmpro-elementor-page .elementor-widget-container { width: 100%; max-width: 100%; }
  .bmpro-elementor-page .elementor-button,
  .bmpro-elementor-page button,
  .bmpro-elementor-page input[type="submit"] { min-height: 44px; }
  .bmpro-elementor-page .bm-feature-card,
  .bmpro-elementor-page .bm-training-card,
  .bmpro-elementor-page .bm-related-card,
  .bmpro-elementor-page .elementor-testimonial__content { padding: 20px; }
  #header-links .menu-item-has-children > ul { min-width: min(92vw, 360px); grid-template-columns: 1fr; }
}

/* ── BMPro editorial Elementor homepage ────────────────────── */
.bm-editorial-home,
.bm-editorial-section,
.bm-editorial-statement,
.bm-editorial-feature,
.bm-editorial-cta {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.bm-editorial-home { font-family: 'Inter', sans-serif; }
.bm-editorial-hero {
  width: 100%; min-height: min(760px, 84vh); display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .94fr);
  align-items: stretch; background: #f5f4ef; color: #101828;
}
.bm-editorial-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 9vw, 144px) clamp(32px, 8vw, 128px); }
.bm-editorial-eyebrow,
.bm-editorial-card__label {
  display: block; color: #176b75; font: 800 11px/1.3 'Inter', sans-serif; letter-spacing: .14em; text-transform: uppercase;
}
.bm-editorial-eyebrow { margin: 0 0 22px !important; }
.bm-editorial-hero__title,
.bm-editorial-statement__title,
.bm-editorial-section h2,
.bm-editorial-feature h2,
.bm-editorial-cta h2 {
  color: #0b172a !important; font-family: Georgia, 'Times New Roman', serif !important; font-weight: 400 !important;
  letter-spacing: -.045em !important; line-height: 1.03 !important;
}
.bm-editorial-hero__title { font-size: clamp(50px, 6.6vw, 100px) !important; margin: 0 0 28px !important; }
.bm-editorial-hero__lede { max-width: 540px; color: #3b495d; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; margin: 0 0 34px !important; }
.bm-editorial-hero__image,
.bm-editorial-hero__image .elementor-widget-container,
.bm-editorial-hero__image .elementor-widget-image { height: 100%; }
.bm-editorial-hero__photo img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.04); }
.bm-editorial-button .elementor-button {
  border-radius: 0 !important; border: 1px solid #0b172a !important; background: #0b172a !important; padding: 15px 25px !important;
  color: #fff !important; font: 700 13px/1 'Inter', sans-serif !important; letter-spacing: .04em; transition: background .2s ease, color .2s ease, transform .2s ease !important;
}
.bm-editorial-button .elementor-button:hover { background: #176b75 !important; border-color: #176b75 !important; transform: translateY(-2px); }
.bm-editorial-statement { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(32px, 8vw, 150px); padding-block: clamp(70px, 11vw, 156px); }
.bm-editorial-statement__title { font-size: clamp(38px, 4vw, 64px) !important; margin: 0 !important; }
.bm-editorial-statement__copy { max-width: 620px; color: #455469; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.6; padding-top: 10px; }
.bm-editorial-section { padding-block: clamp(68px, 9vw, 130px); border-top: 1px solid #cfd6d6; }
.bm-editorial-section__head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 28px; align-items: start; margin: 0 0 clamp(36px, 5vw, 68px); }
.bm-editorial-section h2,
.bm-editorial-feature h2 { font-size: clamp(38px, 4.4vw, 66px) !important; margin: 0 0 20px !important; }
.bm-editorial-section__head > .elementor-element:last-child p,
.bm-editorial-feature__copy > .elementor-element:last-child p { color: #536174; font-size: 17px; line-height: 1.65; max-width: 620px; }
.bm-editorial-grid { display: grid; gap: 28px; }
.bm-editorial-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bm-editorial-card { display: flex; flex-direction: column; min-width: 0; padding-bottom: 16px; border-bottom: 1px solid #aeb9bc; }
.bm-editorial-card__image { margin-bottom: 22px; overflow: hidden; }
.bm-editorial-card__image img { display: block; width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; filter: saturate(.86); transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.bm-editorial-card:hover .bm-editorial-card__image img { transform: scale(1.035); filter: saturate(1); }
.bm-editorial-card__label { margin-bottom: 13px; }
.bm-editorial-card__title { color: #132238 !important; font-family: Georgia, 'Times New Roman', serif !important; font-size: clamp(26px, 2.2vw, 36px) !important; font-weight: 400 !important; letter-spacing: -.025em !important; line-height: 1.12 !important; margin: 0 0 14px !important; }
.bm-editorial-card__copy { color: #536174; font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.bm-editorial-link { margin-top: auto; }
.bm-editorial-link .elementor-button { padding: 0 !important; border: 0 !important; background: transparent !important; color: #0d5964 !important; font-weight: 800 !important; }
.bm-editorial-link .elementor-button::after { content: ' →'; transition: margin .2s ease; }
.bm-editorial-link .elementor-button:hover::after { margin-left: 5px; }
.bm-editorial-feature { display: grid; grid-template-columns: 1fr 1fr; background: #10253f; color: #fff; margin-bottom: clamp(70px, 10vw, 130px); }
.bm-editorial-feature__image img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; filter: saturate(.72); }
.bm-editorial-feature__copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(44px, 7vw, 100px); }
.bm-editorial-feature .bm-editorial-eyebrow { color: #80d0c8; }
.bm-editorial-feature h2 { color: #fff !important; }
.bm-editorial-feature__copy p { color: #d8e3ed !important; }
.bm-editorial-section--business { background: #e9f0ee; width: 100%; max-width: none; padding-inline: max(32px, calc((100% - 1240px) / 2)); }
.bm-editorial-section--business > * { width: min(1240px, 100%); margin-inline: auto; }
.bm-editorial-section--leaders { background: #f5f4ef; width: 100%; max-width: none; padding-inline: max(32px, calc((100% - 1240px) / 2)); }
.bm-editorial-section--leaders > * { width: min(1240px, 100%); margin-inline: auto; }
.bm-editorial-cta { width: 100%; max-width: none; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; padding: clamp(72px, 10vw, 140px) 24px; background: #176b75; }
.bm-editorial-cta h2 { max-width: 920px; color: #fff !important; font-size: clamp(39px, 5vw, 72px) !important; margin: 0 !important; }
.bm-editorial-button--light .elementor-button { background: #fff !important; border-color: #fff !important; color: #0b172a !important; }

@media (max-width: 1024px) {
  .bm-editorial-home, .bm-editorial-section, .bm-editorial-statement, .bm-editorial-feature, .bm-editorial-cta { width: min(100% - 48px, 900px); }
  .bm-editorial-hero { grid-template-columns: 1fr 42%; }
  .bm-editorial-hero__copy { padding: 64px 42px; }
  .bm-editorial-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .bm-editorial-home, .bm-editorial-section, .bm-editorial-statement, .bm-editorial-feature, .bm-editorial-cta { width: calc(100% - 32px); }
  .bm-editorial-hero { grid-template-columns: 1fr; min-height: auto; }
  .bm-editorial-hero__copy { padding: 78px 24px 56px; }
  .bm-editorial-hero__photo img { min-height: 360px; max-height: 480px; }
  .bm-editorial-statement, .bm-editorial-section__head, .bm-editorial-feature { grid-template-columns: 1fr; }
  .bm-editorial-statement { gap: 22px; }
  .bm-editorial-grid--three { grid-template-columns: 1fr; gap: 36px; }
  .bm-editorial-feature__image img { min-height: 320px; }
  .bm-editorial-feature__copy { padding: 52px 28px; }
  .bm-editorial-section--business, .bm-editorial-section--leaders { width: 100%; padding-inline: 16px; }
  .bm-editorial-cta { width: 100%; }
}

/* =========================================================
   IMPACT REPORT FLIPBOOK - homepage/section card + on-demand
   viewer. The actual flipbook is a large (~28MB) self-contained
   HTML5 app (page images, search index, viewer JS/CSS). Only
   this lightweight card (cover image + text) loads with the
   page - the iframe pointing at the heavy viewer is created
   only at the moment someone clicks "Read the Report", inside
   a fullscreen overlay. This keeps page-load performance
   completely unaffected regardless of where the card is placed.
   ========================================================= */
.bm-flipbook-section {
  padding: clamp(46px, 6vw, 76px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(10,122,191,0.16), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(245,166,35,0.18), transparent 22%),
    linear-gradient(180deg, rgba(247,250,253,0.96), rgba(235,244,251,0.96));
}

.bm-flipbook-section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bm-flipbook-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(26,43,94,0.16);
  padding: 28px;
  max-width: 920px;
  margin: 0 auto;
  transition: transform 0.22s, box-shadow 0.22s;
}
.bm-flipbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg), 0 0 28px var(--bm-glow-blue);
}
.bm-flipbook-cover {
  flex: 0 0 160px;
  width: 160px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26,43,94,0.22);
  flex-shrink: 0;
}
.bm-flipbook-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.bm-flipbook-card:hover .bm-flipbook-cover img {
  transform: scale(1.07);
}
.bm-flipbook-info {
  flex: 1 1 320px;
  min-width: 0;
}
.bm-flipbook-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bm-blue);
  margin-bottom: 8px;
}
.bm-flipbook-info h3 {
  font-size: 21px !important;
  color: var(--bm-navy) !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}
.bm-flipbook-info p {
  font-size: 14px !important;
  color: var(--bm-muted) !important;
  line-height: 1.65 !important;
  margin: 0 0 18px !important;
}

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

.bm-flipbook-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bm-navy);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.bm-flipbook-open-btn:hover {
  background: var(--bm-blue);
  transform: translateX(2px);
}

.bm-flipbook-pdf-link {
  display: inline-flex;
  align-items: center;
  color: var(--bm-navy) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(26,43,94,0.16);
  background: rgba(255,255,255,0.68);
  transition: background 0.2s, transform 0.2s;
}

.bm-flipbook-pdf-link:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Full-screen viewer modal */
.bm-flipbook-modal {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17,24,39,0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.bm-flipbook-modal.bm-flipbook-show {
  opacity: 1;
  visibility: visible;
}
.bm-flipbook-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  background: #11151c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.bm-flipbook-iframe-wrap,
.bm-flipbook-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.bm-flipbook-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--bm-navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.bm-flipbook-close-btn:hover { background: #fff; }

@media (max-width: 640px) {
  .bm-flipbook-card { flex-direction: column; text-align: center; padding: 24px; }
  .bm-flipbook-cover { flex-basis: 130px; width: 130px; margin: 0 auto; }
  .bm-flipbook-actions { justify-content: center; }
  .bm-flipbook-modal { padding: 0; }
  .bm-flipbook-modal-inner { border-radius: 0; }
}

/* =========================================================
   BMPro premium consultancy enhancement layer
   Design tokens + blog, SEO, conversion and training UX polish.
   ========================================================= */
:root {
  --bm-glass: rgba(255,255,255,0.78);
  --bm-glass-border: rgba(255,255,255,0.54);
  --bm-radius-2026: 18px;
  --bm-radius-tight: 10px;
  --bm-ease: 180ms ease;
  --bm-section-y: clamp(42px, 5.5vw, 76px);
  --bm-h1: clamp(38px, 5vw, 72px);
  --bm-h2: clamp(26px, 3vw, 42px);
  --bm-card-shadow: 0 18px 48px rgba(26,43,94,0.12);
}

.bmpro-premium-ui #content-core,
.bmpro-premium-ui .entry-content,
.bmpro-premium-ui .page-content {
  scroll-behavior: smooth;
}

.bmpro-premium-ui .elementor-top-section,
.bmpro-premium-ui .e-con.e-parent {
  padding-top: var(--bm-section-y) !important;
  padding-bottom: var(--bm-section-y) !important;
}

.bmpro-premium-ui .elementor-widget:not(:last-child) {
  margin-bottom: clamp(10px, 1.4vw, 18px) !important;
}

.bmpro-premium-ui .elementor-widget-icon-box .elementor-icon-box-wrapper,
.bmpro-premium-ui .bm-training-card,
.bmpro-premium-ui .bm-related-card,
.bmpro-premium-ui .bm-pptx-insight-card,
.bmpro-premium-ui .bm-leader-card,
.bmpro-premium-ui .bm-partnership-feature-inner {
  border-radius: var(--bm-radius-2026);
  transition: transform var(--bm-ease), box-shadow var(--bm-ease), border-color var(--bm-ease);
}

.bmpro-premium-ui .elementor-widget-icon-box .elementor-icon-box-wrapper:hover,
.bmpro-premium-ui .bm-training-card:hover,
.bmpro-premium-ui .bm-related-card:hover,
.bmpro-premium-ui .bm-pptx-insight-card:hover,
.bmpro-premium-ui .bm-leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bm-card-shadow), 0 0 26px rgba(10,122,191,0.16);
}

.bm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bm-muted);
}

.bm-breadcrumbs a {
  color: var(--bm-blue);
  text-decoration: none;
}

.bm-breadcrumbs span {
  color: var(--bm-muted);
}

.bm-post-meta-panel,
.bm-share-row,
.bm-post-taxonomy,
.bm-blog-cta {
  background: var(--bm-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bm-glass-border);
  border-radius: var(--bm-radius-2026);
  box-shadow: 0 12px 32px rgba(26,43,94,0.10);
}

.bm-post-meta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px;
  margin: 0 0 24px;
}

.bm-post-meta-panel span {
  color: var(--bm-navy);
  font-size: 12px;
  font-weight: 800;
}

.bm-share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  margin: 28px 0 18px;
}

.bm-share-row strong {
  color: var(--bm-navy);
  margin-right: 4px;
}

.bm-share-row a,
.bm-post-taxonomy a {
  color: var(--bm-blue);
  font-weight: 800;
  text-decoration: none;
}

.bm-post-taxonomy {
  padding: 14px 16px;
  margin: 0 0 24px;
}

.bm-post-taxonomy p {
  margin: 4px 0 !important;
  font-size: 13px !important;
}

.bm-blog-cta {
  padding: clamp(22px, 4vw, 34px);
  margin: 34px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(10,122,191,0.20), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(238,245,251,0.86));
}

.bm-blog-cta h3 {
  color: var(--bm-navy) !important;
  font-size: clamp(22px, 2.5vw, 32px) !important;
  margin: 8px 0 10px !important;
}

.bm-blog-cta p {
  color: #52677a !important;
  max-width: 680px;
}

.bm-training-countdown {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: #eef7ff;
  border: 1px solid #cfe6fb;
  border-radius: var(--bm-radius-tight);
  padding: 10px 12px;
  margin: 0 0 14px;
}

.bm-training-countdown span {
  color: var(--bm-muted);
  font-size: 12px;
  font-weight: 700;
}

.bm-training-countdown strong {
  color: var(--bm-navy);
  font-size: 14px;
}

.bm-training-countdown.bm-expired {
  background: #fff4f4;
  border-color: #ffd2d2;
}

.bm-floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bm-floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--bm-navy) !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 10px 26px rgba(26,43,94,0.16);
  cursor: pointer;
  transition: transform var(--bm-ease), background var(--bm-ease), color var(--bm-ease);
}

.bm-floating-action:hover {
  transform: translateY(-2px);
}

.bm-floating-consult {
  background: var(--bm-navy);
  color: #fff !important;
}

.bm-floating-whatsapp {
  background: #20b15a;
  color: #fff !important;
}

.bm-floating-top {
  background: var(--bm-blue);
  color: #fff !important;
}

body.home .bm-floating-actions,
body.front-page .bm-floating-actions,
body.page-template-template-homepage .bm-floating-actions {
  left: 18px;
  right: auto;
  bottom: 314px;
}

@media (max-width: 720px) {
  .bm-floating-actions {
    right: 10px;
    bottom: 10px;
  }
  body.home .bm-floating-actions,
  body.front-page .bm-floating-actions,
  body.page-template-template-homepage .bm-floating-actions {
    left: auto;
    right: 10px;
    bottom: 132px;
  }
  .bm-floating-action {
    min-width: 68px;
    min-height: 34px;
    font-size: 11px;
  }
}

/* Elementor canvas and live page: keep the existing Home containers wide,
   centred and readable. Page 426 is targeted intentionally so other pages
   keep their individual editor settings. */
.elementor-page-426 .elementor-element.e-con-boxed > .e-con-inner,
.elementor-426 .elementor-element.e-con-boxed > .e-con-inner {
  width: min(1200px, calc(100% - 48px)) !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
}

.elementor-page-426 .e-con.e-parent,
.elementor-426 .e-con.e-parent {
  box-sizing: border-box;
}

.elementor-page-426 .elementor-widget-container,
.elementor-426 .elementor-widget-container {
  min-width: 0;
}

@media (max-width: 767px) {
  .elementor-page-426 .elementor-element.e-con-boxed > .e-con-inner,
  .elementor-426 .elementor-element.e-con-boxed > .e-con-inner {
    width: calc(100% - 32px) !important;
  }
}

/* Home services: quieter consultancy palette with a subtle, content-safe
   geometric texture. The existing Elementor flip interaction is retained. */
.elementor-page-426 .elementor-element-65fa6d8,
.elementor-426 .elementor-element-65fa6d8 {
  position: relative;
  isolation: isolate;
  gap: 1px !important;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 69, 109, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 55, 91, 0.95), rgba(15, 112, 141, 0.82) 54%, rgba(178, 132, 43, 0.74));
  box-shadow: 0 18px 42px rgba(15, 47, 77, 0.16);
}

.elementor-page-426 .elementor-element-65fa6d8::before,
.elementor-426 .elementor-element-65fa6d8::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.24) 0 1px, transparent 1.5px) 0 0 / 28px 28px,
    linear-gradient(125deg, transparent 0 46%, rgba(255,255,255,0.10) 46.5% 47%, transparent 47.5% 100%);
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box,
.elementor-426 .elementor-element-65fa6d8 .elementor-flip-box {
  min-height: 234px;
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box__front,
.elementor-426 .elementor-element-65fa6d8 .elementor-flip-box__front {
  background:
    radial-gradient(circle at 82% 12%, rgba(123, 211, 230, 0.20), transparent 35%),
    linear-gradient(145deg, #123a5d 0%, #0e5975 58%, #174a62 100%) !important;
}

.elementor-page-426 .elementor-element-65fa6d8 > :nth-child(2) .elementor-flip-box__front,
.elementor-426 .elementor-element-65fa6d8 > :nth-child(2) .elementor-flip-box__front {
  background: radial-gradient(circle at 82% 12%, rgba(255,255,255,0.17), transparent 35%), linear-gradient(145deg, #164767 0%, #11717f 58%, #15536d 100%) !important;
}

.elementor-page-426 .elementor-element-65fa6d8 > :nth-child(3) .elementor-flip-box__front,
.elementor-426 .elementor-element-65fa6d8 > :nth-child(3) .elementor-flip-box__front {
  background: radial-gradient(circle at 82% 12%, rgba(224, 190, 117, 0.25), transparent 35%), linear-gradient(145deg, #173d5b 0%, #21617a 58%, #24536a 100%) !important;
}

.elementor-page-426 .elementor-element-65fa6d8 > :nth-child(4) .elementor-flip-box__front,
.elementor-426 .elementor-element-65fa6d8 > :nth-child(4) .elementor-flip-box__front {
  background: radial-gradient(circle at 82% 12%, rgba(255,255,255,0.17), transparent 35%), linear-gradient(145deg, #15334f 0%, #34667c 58%, #1a485f 100%) !important;
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box__back,
.elementor-426 .elementor-element-65fa6d8 .elementor-flip-box__back {
  background: linear-gradient(145deg, #082d4b, #0d6373) !important;
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box__layer,
.elementor-426 .elementor-element-65fa6d8 .elementor-flip-box__layer {
  border-radius: 0;
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box__layer__title,
.elementor-426 .elementor-element-65fa6d8 .elementor-flip-box__layer__title {
  text-shadow: 0 2px 14px rgba(0,0,0,0.20);
}

.elementor-page-426 .elementor-element-65fa6d8 .elementor-widget-flip-box:hover,
.elementor-426 .elementor-element-65fa6d8 .elementor-widget-flip-box:hover {
  z-index: 1;
}

@media (max-width: 767px) {
  .elementor-page-426 .elementor-element-65fa6d8,
  .elementor-426 .elementor-element-65fa6d8 { border-radius: 16px; }
  .elementor-page-426 .elementor-element-65fa6d8 .elementor-flip-box,
  .elementor-426 .elementor-element-65fa6d8 .elementor-flip-box { min-height: 190px; }
}

/* Homepage updates: let the LinkedIn content use the full card height and
   share the same calm, elevated panel language as the registration card. */
.bm-home-notifications #bm-li-notif {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(26, 92, 132, 0.16);
  border-left: 4px solid var(--bm-blue);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 7%, rgba(10,122,191,0.12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(242,248,252,0.96));
  box-shadow: 0 16px 38px rgba(26,43,94,0.10);
}

.bm-home-notifications #bm-li-notif .bm-notif-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.bm-home-notifications #bm-li-notif .bm-notif-track {
  flex: 1;
  min-height: 0;
}

.bm-home-notifications #bm-li-notif .bm-notif-slide.bm-active {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bm-home-notifications #bm-li-notif .bm-notif-header {
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26,43,94,0.10);
}

.bm-home-notifications #bm-li-notif .bm-notif-meta strong {
  color: var(--bm-navy);
  font-size: 15px;
  line-height: 1.25;
}

.bm-home-notifications #bm-li-notif .bm-notif-text {
  margin: 14px 0 10px;
  color: #31485c;
}

.bm-home-notifications #bm-li-notif .bm-notif-tags {
  margin-bottom: 16px;
}

.bm-home-notifications #bm-li-notif .bm-notif-cta {
  align-self: flex-start;
  margin-top: auto;
  border-radius: 8px;
  padding: 10px 15px;
}

.bm-home-notifications #bm-li-notif .bm-notif-nav {
  margin-top: 18px;
}

/* Compact, consistent LinkedIn and registration cards. */
.bm-home-notifications { padding: clamp(34px, 4vw, 52px) 0; }
.bm-home-notifications-inner { width: min(1040px, calc(100% - 40px)); }
.bm-home-notifications-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.bm-home-notifications #bm-li-notif,
.bm-home-notifications .bm-training-card { min-height: 500px; }
.bm-home-notifications #bm-li-notif .bm-notif-inner,
.bm-home-notifications .bm-training-card { padding: 18px; }
.bm-home-notifications #bm-li-notif .bm-notif-meta strong { font-size: 14px !important; line-height: 1.35 !important; }
.bm-home-notifications .bm-training-card h3 { font-size: 20px !important; line-height: 1.25 !important; }
.bm-home-notifications #bm-li-notif .bm-notif-meta span,
.bm-home-notifications #bm-li-notif .bm-notif-text,
.bm-home-notifications #bm-li-notif .bm-notif-tags,
.bm-home-notifications .bm-training-card p,
.bm-home-notifications .bm-training-card li { font-size: 12.5px !important; line-height: 1.55 !important; }
.bm-home-notifications .bm-training-ad-image { max-height: 225px; margin-bottom: 12px; }
.bm-home-notifications .bm-training-card ul { margin: 10px 0 14px !important; padding: 11px !important; }
.bm-home-notifications .bm-training-register,
.bm-home-notifications #bm-li-notif .bm-notif-cta { min-height: 40px; padding: 10px 14px; font-size: 12px; }

@media (max-width: 920px) {
  .bm-home-notifications-grid { grid-template-columns: 1fr; }
  .bm-home-notifications #bm-li-notif,
  .bm-home-notifications .bm-training-card { min-height: 0; }
}

/* Partner visuals imported from the supplied BMPro presentation. */
.bm-partner-gallery { padding: clamp(44px, 6vw, 72px) 0; background: #f7fafc; }
.bm-partner-gallery__inner { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.bm-partner-gallery__head { max-width: 650px; margin: 0 auto 30px; text-align: center; }
.bm-partner-gallery__head h2 { margin: 10px 0 0 !important; color: var(--bm-navy) !important; font-size: clamp(26px, 3vw, 34px) !important; }
.bm-partner-gallery__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.bm-partner-gallery__card { overflow: hidden; background: #fff; border: 1px solid var(--bm-border); border-radius: 14px; box-shadow: 0 12px 28px rgba(26,43,94,.08); }
.bm-partner-gallery__card img { display: block; width: 100%; aspect-ratio: 1.28 / 1; object-fit: contain; background: #fff; padding: 12px; }
.bm-partner-gallery__card div { padding: 0 16px 18px; text-align: center; }
.bm-partner-gallery__card h3 { margin: 0 0 6px !important; color: var(--bm-navy) !important; font-size: 17px !important; }
.bm-partner-gallery__card p { margin: 0 !important; color: var(--bm-muted) !important; font-size: 13px !important; line-height: 1.5 !important; }
@media (max-width: 860px) { .bm-partner-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .bm-partner-gallery__grid { grid-template-columns: 1fr; } }

/* Leadership group photograph: added after the existing profiles, not in place of them. */
.bm-leadership-moment { width: min(960px, calc(100% - 40px)); margin: 46px auto; display: grid; grid-template-columns: minmax(300px, 420px) 1fr; align-items: center; gap: 30px; padding: 20px; background: #f7fafc; border: 1px solid var(--bm-border); border-radius: 14px; box-shadow: 0 12px 28px rgba(26,43,94,.08); }
.bm-leadership-moment img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.bm-leadership-moment figcaption { display: grid; gap: 7px; color: var(--bm-navy); }
.bm-leadership-moment figcaption span { color: var(--bm-blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bm-leadership-moment figcaption strong { font-size: clamp(18px, 2.2vw, 25px); line-height: 1.25; }
@media (max-width: 560px) { .bm-leadership-moment { grid-template-columns: 1fr; } .bm-leadership-moment img { width: 100%; max-width: none; } }

/* Return to the original hero artwork: its blue and slate circles are the
   intended palette for the dark background and need no additional overlay. */
#slider .rslides-inner li::before,
#slider .rslides-inner li::after {
  content: none;
  animation: none;
  background: none;
}

/* A blue-and-slate treatment that matches the original BMPro hero palette. */
#slider .rslides-inner li:nth-child(-n+2)::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 43%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 27, 49, 0) 0%, rgba(18, 40, 80, .94) 26%, #1d3266 100%);
}

#slider .rslides-inner li:nth-child(-n+2)::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 6%;
  right: 1%;
  width: clamp(260px, 33vw, 430px);
  height: min(88%, 440px);
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 35%, rgba(45, 92, 172, .86) 0 31%, transparent 31.7%),
    radial-gradient(circle at 67% 65%, rgba(121, 135, 162, .78) 0 31%, transparent 31.7%);
}

#slider .rslides-inner li:nth-child(2)::after {
  background:
    radial-gradient(circle at 35% 35%, rgba(234, 194, 105, .88) 0 31%, transparent 31.7%),
    radial-gradient(circle at 67% 65%, rgba(110, 127, 153, .78) 0 31%, transparent 31.7%);
}

@media (max-width: 767px) {
  #slider .rslides-inner li:nth-child(-n+2)::before { width: 58%; }
  #slider .rslides-inner li:nth-child(-n+2)::after { width: 250px; height: 250px; top: 28%; right: -42px; opacity: .84; }
}

/* Simplified hero artwork: a clean, two-circle accent for each slide.
   The panel masks the legacy artwork so no duplicate or rainbow circles show. */
#slider .rslides-inner::before,
#slider .rslides-inner::after { content: none; }

#slider .rslides-inner li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --bm-orb-one: rgba(32, 194, 151, 0.83);
  --bm-orb-two: rgba(247, 127, 84, 0.84);
}

#slider .rslides-inner li::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 43%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 27, 49, 0) 0%, rgba(18, 40, 80, 0.94) 26%, #1d3266 100%);
}

#slider .rslides-inner li::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: clamp(260px, 33vw, 430px);
  height: min(88%, 440px);
  top: 6%;
  right: 1%;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 35%, var(--bm-orb-one) 0 31%, transparent 31.7%),
    radial-gradient(circle at 67% 65%, var(--bm-orb-two) 0 31%, transparent 31.7%);
  animation: bmpro-hero-orb-drift 5s ease-in-out infinite alternate;
}

#slider .rslides-inner li:nth-child(2) { --bm-orb-one: rgba(143, 104, 243, 0.85); --bm-orb-two: rgba(248, 190, 70, 0.85); }
#slider .rslides-inner li:nth-child(3) { --bm-orb-one: rgba(45, 199, 230, 0.84); --bm-orb-two: rgba(227, 91, 144, 0.84); }

#slider .rslides-content { position: absolute; z-index: 2; }
#slider a.rslides_nav { position: absolute; z-index: 3; }
#slider .rslides_tabs { position: absolute; z-index: 3; }

/* Keep the active slide's copy visible throughout every transition. */
#slider .rslides > [class*="_on"] .featured-title,
#slider .rslides > [class*="_on"] .featured-excerpt,
#slider .rslides > [class*="_on"] .featured-link {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes bmpro-hero-orb-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-8px, 5px, 0) scale(1.025); }
}

/* Centre title/subtitle areas on standard pages, independent of page template. */
#intro #intro-core-wrap,
#intro .page-title,
#intro #breadcrumbs {
  text-align: center;
}

/* Elementor's page-content title and subtitle blocks sit below the image
   banner. Centre those blocks across all inner pages as well. */
.bmpro-hero--inner .bmpro-hero__inner,
.bmpro-section__head,
.bmpro-section__head .elementor-widget-container,
.bmpro-section__head .elementor-heading-title,
.bmpro-section__head p {
  text-align: center;
}

.bmpro-hero--inner .bmpro-hero__inner,
.bmpro-section__head {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.bmpro-hero--inner .bmpro-hero__actions {
  justify-content: center;
}

/* Portable responsive baseline for the live site and a future hosted copy. */
html { -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; }

@media (max-width: 767px) {
  #intro #intro-core-wrap { padding: 22px 18px; }
  #intro .page-title { font-size: clamp(24px, 7vw, 32px); }
  #slider .rslides-content-inner { width: auto; max-width: calc(100% - 48px); }
  #slider .rslides-inner li::before { width: 58%; }
  #slider .rslides-inner li::after {
    width: 250px;
    height: 250px;
    top: 28%;
    right: -42px;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  #slider .rslides-inner li::after { animation: none; }
}

/* BMPro footer replaces the theme-provider credit with useful contact details. */
.bmpro-site-footer {
  background: #0a1930;
  color: rgba(255,255,255,0.76);
  padding: 34px 24px 18px;
  font-size: 14px;
}

.bmpro-site-footer__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1.65fr) repeat(3, minmax(145px, 1fr));
  gap: 28px;
  align-items: start;
}

.bmpro-site-footer__brand,
.bmpro-site-footer__item { display: grid; gap: 6px; }
.bmpro-site-footer__brand strong { color: #fff; font-size: 16px; }
.bmpro-site-footer__brand span { color: rgba(255,255,255,0.58); }
.bmpro-site-footer__label { color: #7ee2c7; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.bmpro-site-footer a { color: #fff; text-decoration: none; }
.bmpro-site-footer a:hover, .bmpro-site-footer a:focus-visible { color: #7ee2c7; text-decoration: underline; }
.bmpro-site-footer__bottom {
  width: min(1140px, 100%);
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

@media (max-width: 767px) {
  .bmpro-site-footer { padding: 30px 20px 16px; }
  .bmpro-site-footer__inner { grid-template-columns: 1fr; gap: 18px; }
  .bmpro-site-footer__bottom { margin-top: 22px; }
}
