/* =============================================
   Bell Equipment – Complete Stylesheet
   Pixel-faithful to live bellequipment.com
   Mobile-first: 640/768/1024/1280px
   ============================================= */

/* =============================================
   STOCK TICKER BAR
   Slim marquee bar above the main header.
   Only rendered when ShowStockTicker is enabled
   on the site settings.
   ============================================= */
.bell-stock-ticker {
  display: flex;
  align-items: stretch;
  height: 36px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  font-family: var(--font-body, sans-serif);
  font-size: 0.72rem;
  color: #444;
  position: relative;
  z-index: 1001;
}

.bell-stock-ticker__label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--color-primary, #FFC200);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.bell-stock-ticker__label:hover {
  opacity: 0.85;
  color: #1a1a1a;
  text-decoration: none;
}

.bell-stock-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bell-stock-ticker__track {
  display: flex;
  width: max-content;
  animation: bell-ticker-scroll 30s linear infinite;
}

.bell-stock-ticker__track:hover {
  animation-play-state: paused;
}

.bell-stock-ticker__item {
  white-space: nowrap;
  padding: 0 16px;
  padding-right: max(16px, 50vw);
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 36px;
  transition: color 0.15s;
}

.bell-stock-ticker__item:hover {
  color: #000;
  text-decoration: none;
}

.bell-ticker__price {
  color: #1a1a1a;
}

.bell-ticker__up   { color: #2e7d32; }
.bell-ticker__down { color: #c62828; }
.bell-ticker__flat { color: #777;    }

.bell-ticker__pd {
  color: #999;
  font-size: 0.65rem;
}

@keyframes bell-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* On very small screens, hide high/low/volume to keep it readable */
@media (max-width: 600px) {
  .bell-stock-ticker__label { padding: 0 10px; font-size: 0.62rem; }
  .bell-stock-ticker__item  { font-size: 0.68rem; }
}

/* 1. RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

ul, ol { list-style: none; }

/* 2. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #1a1a1a;
  line-height: 1.2;
  font-weight: 700;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 3. CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1280px) { .container { padding: 0 40px; } }

/* =============================================
   4. GROUP HEADER — Flex layout
   Logo has margin-bottom: -120px to protrude into the hero below.
   Matches live site: header margin 20px top / 30px bottom.
   ============================================= */

.site-header--group {
  position: relative;
  z-index: 100;
  background: #ffffff;
  overflow: visible;
  margin: 0;
  padding: 20px 15px 0;
  /* Full-width header; 20px top padding matches live Elementor inner container margin-top */
}

/* ── Desktop: flex row, logo left + right column ── */
@media (min-width: 1024px) {
  .site-header--group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ── Mobile / tablet: compact sticky header ── */
@media (max-width: 1023px) {
  .site-header--group {
    display: flex;
    align-items: center;
    min-height: 64px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  }
}

/* Logo box — left column, 18% wide at desktop */
.header-group__logo-box {
  flex: 0 0 18%;
  max-width: 18%;
  padding-top: 5px;
  position: relative;
  z-index: 2;
}

.header-group__logo-box a {
  display: block;
  text-align: center;
}

.header-group__logo-box img {
  width: 90%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.38);
  display: block;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header-group__logo-box img {
    margin-bottom: -120px; /* KEY: logo protrudes 120px into hero section */
  }
}

@media (max-width: 1023px) {
  .header-group__logo-box {
    flex: 0 0 auto;
    max-width: none;
    padding-top: 8px;
  }
  .header-group__logo-box img {
    height: 44px;
    width: auto;
    box-shadow: none;
    margin-bottom: 0;
  }
}

/* Right side wrapper: utility row + main nav stacked */
.header-group__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}

/* Utility bar (search + links + langs) */
.header-group__utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0 21px 0;
  gap: 16px;
}

/* Search box */
.header-group__search {
  display: none;
}

@media (min-width: 768px) {
  .header-group__search { display: flex; }
}

.header-group__search form {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
  height: 34px;
}

.header-group__search input {
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 15px;
  width: 180px;
  font-family: var(--font-body);
  color: #333;
}

.header-group__search input::placeholder { color: #999; }

.header-group__search button {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

/* Utility top nav */
.header-group__topnav {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .header-group__topnav { display: flex; }
}

.header-group__topnav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #494949;
  text-decoration: none;
  white-space: nowrap;
}

.header-group__topnav a:hover { color: #FDBA31; }

/* Language links */
.header-group__langs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-group__langs a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #494949;
  text-decoration: none;
}

.header-group__langs a.active,
.header-group__langs a:hover {
  color: #FDBA31;
}

/* MAIN NAV BAR */
.header-group__mainnav {
  background: #fff;
  padding: 10px 0 2px 0;
  margin-top: 2px; /* 2px gap after utility bar, matching live site */
  /* align-self: stretch (default) — nav spans full right-column width, items left-aligned */
}

.header-group__mainnav ul {
  display: flex;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.header-group__mainnav ul li {
  position: relative;
}

.header-group__mainnav ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1em 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-group__mainnav ul li a:hover,
.header-group__mainnav ul li.active a {
  color: #FDBA31;
}

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #1A1A1A;
  flex-shrink: 0;
  position: absolute;
  top: 14px;
  right: 16px;
}

.nav-toggle--white { color: #fff; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.3s;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s;
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   5. DARK / SUB-SITE HEADER (Mining, Forestry, etc.)
   ============================================= */

.site-header--dark {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1A1A1A;
  color: #fff;
}

/* TOP ROW */
.header-dark__top {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 8px 20px;
  gap: 12px;
}

/* Logo */
.header-dark__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.header-dark__logo img {
  height: 44px;
  width: auto;
}

/* Right group */
.header-dark__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Social icons */
.header-dark__social {
  display: none;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 1024px) {
  .header-dark__social { display: flex; }
}

.header-dark__social a {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.header-dark__social a:hover { color: #FFC200; }

.header-dark__social-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 2px;
}

/* Search */
.header-dark__search {
  display: none;
}

@media (min-width: 768px) {
  .header-dark__search { display: flex; }
}

.header-dark__search form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
  height: 28px;
}

.header-dark__search input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 12px;
  width: 140px;
  font-family: var(--font-body);
  color: #fff;
}

.header-dark__search input::placeholder { color: rgba(255,255,255,0.5); }

.header-dark__search button {
  background: none;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
}

/* Top nav links */
.header-dark__topnav {
  display: none;
  align-items: center;
  gap: 14px;
}

@media (min-width: 768px) {
  .header-dark__topnav { display: flex; }
}

.header-dark__topnav a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.header-dark__topnav a:hover { color: #FFC200; }

/* Language links */
.header-dark__langs {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-dark__langs a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.header-dark__langs a.active { color: #FFC200; font-weight: 800; }
.header-dark__langs a:hover { color: #FFC200; }

/* BOTTOM NAV BAR + REGION */
.header-dark__bottom {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #1A1A1A;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .header-dark__bottom { display: flex; }
}

/* Main nav */
.header-dark__mainnav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.header-dark__mainnav ul li {
  position: relative;
}

.header-dark__mainnav ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.header-dark__mainnav ul li a:hover,
.header-dark__mainnav ul li.active a {
  color: #FFC200;
  border-bottom-color: #FFC200;
}

/* Region dropdown */
.header-dark__region {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: #FFC200;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Chevron */
.chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
}

/* Dropdown menus */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  width: max-content;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-top: 3px solid #FFC200;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 200;
}

.nav-dropdown--dark {
  background: #2a2a2a;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown ul { padding: 0.5rem 0; list-style: none; }

.nav-dropdown ul li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #333;
  border-bottom: none !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown ul li a:hover {
  background: #f5f5f5;
  color: #FFC200;
}

.nav-dropdown--dark ul li a {
  color: rgba(255,255,255,0.85);
}

.nav-dropdown--dark ul li a:hover {
  background: rgba(255,255,255,0.08);
  color: #FFC200;
}

/* Group header nav — configurable colours (overrides group.css hardcoded values) */
.bell-nav-item { color: var(--nav-text, #000000) !important; }

.bell-nav-item:hover,
.bell-nav-item:focus,
.bell-nav-item.bell-nav-item-active { color: var(--nav-hover-text, #FFC200) !important; }

/* Dropdown panel */
.bell-nav-dropdown { background-color: var(--nav-dropdown-bg, #ffffff) !important; }
.bell-nav-dropdown a { color: var(--nav-dropdown-text, #33373d) !important; }

/* Group header nav dropdown — show on hover (replaces Elementor JS) */
.bell-nav-menu .menu-item-has-children {
  position: relative;
}

.bell-nav-menu .menu-item-has-children:hover > ul {
  display: block;
  width: max-content;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-top: 3px solid var(--color-primary, #FFC200);
  border-radius: 0 0 4px 4px;
  z-index: 200;
  padding: 0.5rem 0 !important;
}

.bell-nav-menu .menu-item-has-children > ul li a {
  display: block;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background-color: var(--nav-dropdown-bg, #ffffff) !important;
  color: var(--nav-dropdown-text, #33373d) !important;
}

.bell-nav-menu .menu-item-has-children > ul li a:hover,
.bell-nav-dropdown .bell-nav-item:hover,
.bell-nav-dropdown .bell-nav-sub-item:hover {
  background-color: var(--nav-dropdown-hover-bg, #f5f5f5) !important;
  color: var(--nav-dropdown-hover-text, #FFC200) !important;
}

/* 3rd-level+ flyout — appears to the right of 2nd-level items */
.bell-nav-menu .menu-item-has-flyout {
  position: relative !important;
}
.bell-nav-menu .menu-item-has-flyout > .bell-nav-flyout {
  display: none;
  position: absolute;
  left: 100%;
  top: 0 !important;
  background-color: var(--nav-dropdown-bg, #ffffff);
  box-shadow: 4px 8px 24px rgba(0,0,0,0.15);
  border-left: 3px solid var(--color-primary, #FFC200);
  border-radius: 0 4px 4px 4px;
  z-index: 201;
  width: max-content;
  min-width: 180px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}
/* Invisible bridge to the left — keeps :hover active during diagonal mouse movement */
.bell-nav-menu .menu-item-has-flyout > .bell-nav-flyout::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 12px;
}
.bell-nav-menu .menu-item-has-flyout:hover > .bell-nav-flyout {
  display: block !important;
}
/* Right-arrow indicator on items that have a flyout */
.bell-nav-flyout-indicator {
  float: right;
  margin-left: 12px;
  font-style: normal;
  opacity: 0.55;
  line-height: inherit;
}
/* Flyout items use the same link style as dropdown items */
.bell-nav-flyout li a {
  display: block;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background-color: var(--nav-dropdown-bg, #ffffff) !important;
  color: var(--nav-dropdown-text, #33373d) !important;
}
.bell-nav-flyout li a:hover {
  background-color: var(--nav-dropdown-hover-bg, #f5f5f5) !important;
  color: var(--nav-dropdown-hover-text, #FFC200) !important;
}
/* Mobile drawer — deeper subnav indent */
.nav-drawer .drawer-subnav--deep {
  padding-left: 1rem;
}
.nav-drawer .drawer-subnav--deep li a {
  font-size: 13px;
  color: #666;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding-top: 60px;
}

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

.nav-drawer__inner { padding: 1.5rem 20px; }

.nav-drawer ul { list-style: none; padding: 0; }
.nav-drawer > .nav-drawer__inner > ul > li {
  border-bottom: 1px solid #e8e8e8;
}
.nav-drawer > .nav-drawer__inner > ul > li > a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-drawer .drawer-subnav { padding: 0 0 0.5rem 1rem; display: none; }
.nav-drawer .drawer-subnav.is-open { display: block; }
.nav-drawer .drawer-subnav li a {
  display: block;
  padding: 0.5rem 0;
  color: #444;
  font-size: 14px;
  text-decoration: none;
}

/* Body top padding */
body { padding-top: 0; }

/* =============================================
   6. GROUP HERO
   ============================================= */

.bell-hero {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 600px;
  background: #111;
  overflow: hidden;
  margin-top: 0; /* header padding-top handles offset; no gap to cancel */
}

@media (max-width: 600px) {
  .bell-hero {
    height: 180px;
    min-height: 180px;
    margin-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .bell-hero {
    height: 35vh;
    min-height: 35vh;
  }
}

.bell-hero__img,
.bell-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bell-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1;
}

/* Default dark background (world map style) */
.bell-hero__default-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a2a3a 0%, #050e17 100%);
}

/* Slider arrows */
.bell-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  border-radius: 0;
}

.bell-hero__arrow--prev { left: 12px; }
.bell-hero__arrow--next { right: 12px; }
.bell-hero__arrow:hover { background: rgba(255,255,255,0.3); }

/* Side action icons */
.bell-hero__side-icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bell-hero__side-icon {
  background: #FFC200;
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.bell-hero__side-icon:hover { background: #e6ae00; }

/* =============================================
   7. GROUP SUB-SITE LOGO STRIP
   Popup appears ABOVE each item on hover (matches live site)
   ============================================= */

.bell-subsite-strip {
  background: #fff;
}

.bell-subsite-strip__inner {
  max-width: 1280px;
  margin: 25px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 5px solid #FFC200;
  border-bottom: 5px solid #FFC200;
  padding: 20px 0;
  flex-wrap: nowrap;
}

/* Each item — plain link or popup wrapper */
.bell-subsite-strip__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.bell-subsite-strip__item img {
  width: 80%;
  height: auto;
  display: block;
}

/* Popup-capable items */
.bell-subsite-strip__item--popup {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.bell-subsite-strip__item--popup > a {
  display: block;
  text-decoration: none;
}

.bell-subsite-strip__item--popup > a img {
  width: 76%;
  height: auto;
  display: block;
}

/* Popup panel — slides up from bottom to above on hover */
.bell-subsite-strip__popup {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(80% - 10px);
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s;
  z-index: 200;
  pointer-events: none;
  min-width: 220px;
}

.bell-subsite-strip__item--popup:hover .bell-subsite-strip__popup {
  opacity: 1;
  bottom: calc(100% + 10px);
  pointer-events: auto;
}

/* Dark description header inside popup */
.bell-subsite-strip__popup-header {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

/* Region list area */
.bell-subsite-strip__popup-regions {
  box-shadow: 0 0 10px 5px rgba(0,0,0,0.11);
}

/* Mining = yellow background */
.bell-subsite-strip__popup--mining .bell-subsite-strip__popup-regions {
  background-color: #FFC200;
}

/* Forestry = green background */
.bell-subsite-strip__popup--forestry .bell-subsite-strip__popup-regions {
  background-color: #006537;
}

/* Description popup (BHI/BESSA/UK) = dark background */
.bell-subsite-strip__popup-desc {
  background-color: #1A1A1A;
  box-shadow: 0 0 10px 5px rgba(0,0,0,0.11);
  padding: 20px 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 0.6s, transform 0.6s;
}

.bell-subsite-strip__item--popup:hover .bell-subsite-strip__popup-desc {
  opacity: 1;
  transform: translate(0, 0);
}

/* Wide logo images (BESSA/UK at 80%) */
.bell-subsite-strip__img--wide {
  width: 80%;
  height: auto;
  display: block;
}

/* Region list */
.bell-subsite-strip__popup-regions ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 0.6s, transform 0.6s;
}

.bell-subsite-strip__item--popup:hover .bell-subsite-strip__popup-regions ul {
  opacity: 1;
  transform: translate(0, 0);
}

.bell-subsite-strip__popup-regions ul li a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 3px 0;
  transition: color 0.3s;
}

/* Forestry links are white on green */
.bell-subsite-strip__popup--forestry .bell-subsite-strip__popup-regions ul li a {
  color: #ffffff;
}

.bell-subsite-strip__popup-regions ul li a:hover {
  color: #FDBA31;
}

@media (max-width: 767px) {
  .bell-subsite-strip__inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .bell-subsite-strip__item,
  .bell-subsite-strip__item--popup {
    width: calc(50% - 10px);
  }
}

/* =============================================
   8. MINING – REGION SELECTOR
   ============================================= */

.bell-region-section {
  padding: 48px 0 36px;
  background: #fff;
}

.bell-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.bell-region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bell-region-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bell-region-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  border-radius: 0;
}

.bell-region-btn:hover {
  border-color: #FFC200;
  background: #FFC200;
  color: #1A1A1A;
}

/* Keep 2-col layout for last row if odd */
@media (min-width: 768px) {
  .bell-region-grid .bell-region-btn:nth-child(5),
  .bell-region-grid .bell-region-btn:nth-child(6) {
    /* These are in second row of 2 */
  }
  .bell-region-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

@media (min-width: 900px) {
  .bell-region-grid {
    /* First 4 on one row, last 2 centred below */
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
  }
  .bell-region-grid .bell-region-btn:nth-child(5),
  .bell-region-grid .bell-region-btn:nth-child(6) {
    grid-column: auto;
  }
  /* Centre the last 2 in a 4-col grid */
  .bell-region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }
  .bell-region-btn:nth-child(5) { grid-column: 2; }
  .bell-region-btn:nth-child(6) { grid-column: 3; }
}

/* =============================================
   9. MINING – INNOVATION & TECHNOLOGY
   ============================================= */

.bell-innovation-section {
  padding: 48px 0;
  background: #fff;
}

.bell-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .bell-video-grid { grid-template-columns: repeat(2, 1fr); }
}

.bell-video-card {
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

.bell-video-card__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.bell-video-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.bell-video-card__title {
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}

/* =============================================
   10. MINING – NEWS & TESTIMONIALS
   ============================================= */

.bell-news-section {
  padding: 48px 0 24px;
  background: #f9f9f9;
}

.bell-news-list {
  margin-top: 12px;
}

.bell-news-item {
  padding: 28px 0;
  border-bottom: 1px solid #e0e0e0;
}

.bell-news-item:first-child {
  border-top: none;
}

.bell-news-item__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bell-news-item__title a {
  color: inherit;
  text-decoration: none;
}

.bell-news-item__title a:hover { color: #FFC200; }

.bell-news-item__date {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.bell-news-item__excerpt {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.bell-news-empty {
  color: #666;
  font-size: 14px;
  padding: 20px 0;
}

/* Back to top */
.bell-back-to-top {
  text-align: center;
  padding: 28px 0;
  background: #f9f9f9;
}

.bell-back-to-top a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bell-back-to-top a:hover { color: #FFC200; }

/* =============================================
   11. CONTACT PAGE
   ============================================= */

.bell-contact-section {
  padding: 40px 0 60px;
  background: #fff;
}

.bell-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .bell-contact-layout {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
  }
}

/* Form column */
.bell-contact-form-col { }

/* Info column */
.bell-contact-info-col { }

.bell-contact-info-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bell-contact-office {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.bell-contact-office p { margin-bottom: 8px; }
.bell-contact-office a { color: #1A1A1A; text-decoration: none; }
.bell-contact-office a:hover { color: #FFC200; }
.bell-contact-office strong { font-weight: 700; }

.bell-contact-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 24px 0;
}

.bell-contact-follow-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bell-contact-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.bell-contact-social a {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s;
}

.bell-contact-social a:hover { color: #FFC200; }

/* Contact form styles */
.bell-form-group {
  margin-bottom: 16px;
}

.bell-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .bell-form-row { grid-template-columns: 1fr; }
}

.bell-form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.bell-form-required {
  font-style: normal;
  color: #e07b00;
  font-size: 12px;
  font-weight: 400;
}

.bell-form-control {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.bell-form-control:focus {
  outline: none;
  border-color: #FFC200;
  box-shadow: 0 0 0 3px rgba(255,194,0,0.15);
}

select.bell-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.bell-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.bell-form-group--checkbox {
  margin-top: 8px;
}

.bell-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.bell-form-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #FFC200;
}

.bell-form-checkbox-label a { color: #FFC200; text-decoration: underline; }

.bell-form-notice {
  margin: 12px 0 20px;
  padding: 10px 14px;
  border: 1px solid #FFC200;
  border-radius: 2px;
  background: #fff8e1;
}

.bell-form-notice p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

.bell-form-notice a { color: #FFC200; text-decoration: underline; }

.bell-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #FFC200;
  color: #1A1A1A;
  border: none;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  min-height: 44px;
}

.bell-btn-submit:hover { background: #e6ae00; }

/* Form messages */
.bell-form-success {
  padding: 16px 20px;
  background: #e8f5e9;
  border-left: 4px solid #2E7D32;
  border-radius: 2px;
  margin-bottom: 20px;
}

.bell-form-success p { color: #2E7D32; font-weight: 600; margin: 0; }

.bell-form-error {
  padding: 16px 20px;
  background: #ffebee;
  border-left: 4px solid #c62828;
  border-radius: 2px;
  margin-bottom: 20px;
}

.bell-form-error p { color: #c62828; font-weight: 600; margin: 0; }

/* =============================================
   12. FOOTER – THEME-DRIVEN (uses --color-footer-bg / --color-footer-text)
   ============================================= */

.site-footer {
  background: var(--color-footer-bg, #FFC200);
  color: var(--color-footer-text, #1A1A1A);
  margin-top: auto;
  width: 100%;
  overflow: hidden; /* clip so footer-bg doesn't bleed past footer-divider span */
}

.footer-main {
  padding: 40px 0 32px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

.footer-col { }

.footer-col__heading {
  font-family: "Poppins", var(--font-heading), sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-footer-text, #1A1A1A);
  margin: 0 0 14px 0;  /* explicit 0 top margin — overrides group.css h-tag margin-block-start */
  margin-block: 0 14px;
  letter-spacing: 0;
  text-transform: capitalize;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--color-footer-text, #1A1A1A);
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* FOOTER BOTTOM BAR — white, matching reference footer copyright area */
.footer-bottom {
  background: #fff;
  padding: 10px 0;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* When no social icons, right-align copyright to match reference text-align:end */
.footer-bottom__inner--no-social {
  justify-content: flex-end;
}

.footer-copyright {
  font-family: "Poppins", var(--font-heading, 'Barlow', sans-serif);
  font-size: 13px;
  font-weight: 400;
  color: #333; /* fixed dark — footer-bottom is always white regardless of site theme */
  margin: 0;
  margin-block: 0; /* prevent group.css p{margin-block-end} from adding space */
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  /* !important overrides group.css a:hover{color:#336} which has equal specificity */
  color: var(--color-footer-text, #1A1A1A) !important;
  transition: background 0.2s;
  text-decoration: none !important;
}

.footer-social a:hover {
  background: rgba(0,0,0,0.15);
  color: var(--color-footer-text, #1A1A1A) !important;
}
.footer-social svg { width: 15px; height: 15px; }

/* Copyright row is always white — use site brand colour (--color-footer-bg) for text.
   Must match group.css specificity (.bell-30964 .bell-element.bell-el-fd2115e) to override
   its `color: var(--color-footer-text) !important` which can be white (e.g. UK site). */
/* Higher specificity (0,4,0) than group.css (0,3,0) so this wins despite loading first */
.bell-30964 .bell-element.bell-el-fd2115e.bell-widget {
  color: #000 !important;
}

/* Social icons in copyright row — row is always white so icons must be dark */
.bell-el-9fb1476.has-social > .bell-con-inner {
  justify-content: space-between !important;
}
.bell-el-9fb1476 .footer-social a {
  color: #333 !important;
}
.bell-el-9fb1476 .footer-social a:hover {
  color: #333 !important;
}

/* =============================================
   13. HERO (legacy – used for sub-pages)
   ============================================= */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 200px;
}

.hero--sm { min-height: 160px; }

@media (min-width: 1024px) {
  .hero { min-height: 320px; }
  .hero--sm { min-height: 220px; }
}

.hero__image { position: relative; width: 100%; }
.hero__image img { width: 100%; height: auto; object-fit: cover; min-height: 200px; display: block; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #fff;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFC200;
  margin-bottom: 8px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero__subheadline {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   14. SECTIONS (legacy)
   ============================================= */

.section { padding: var(--section-padding) 0; }
.section--sm { padding: 40px 0; }
.section--light { background: #f5f5f5; }
.section--dark { background: #1A1A1A; color: #fff; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFC200;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-header { margin-bottom: 2rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

/* =============================================
   15. BUTTONS (legacy)
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: #FFC200;
  color: #1A1A1A;
  border-color: #FFC200;
}
.btn-primary:hover { background: #e6ae00; border-color: #e6ae00; }

.btn-secondary {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
}
.btn-secondary:hover { background: #333; border-color: #333; }

.btn-outline {
  background: transparent;
  color: #FFC200;
  border-color: #FFC200;
}
.btn-outline:hover { background: #FFC200; color: #1A1A1A; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: #1A1A1A; }

.btn-lg { min-height: 48px; padding: 12px 32px; font-size: 14px; }

/* =============================================
   16. CARDS (legacy)
   ============================================= */

.card {
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }

.card__image img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.product-card__image {
  background: #fff;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  aspect-ratio: unset;
}

.card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFC200;
  margin-bottom: 6px;
  display: block;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__excerpt { font-size: 13px; color: #555; margin-bottom: 14px; flex: 1; }
.card__meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.card__footer { margin-top: auto; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #FFC200;
}

.card__link:hover { text-decoration: none; }

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

/* News: featured article */
.news-featured {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  background: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.news-featured:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); text-decoration: none; color: inherit; }
.news-featured__img { flex: 0 0 58%; max-height: 360px; overflow: hidden; }
.news-featured__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-featured__body { flex: 1; padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; justify-content: center; }
.news-featured__badge {
  display: inline-block;
  background: var(--color-primary, #FFC200);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.news-featured__body h2 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; margin: 0.5rem 0 0.75rem; line-height: 1.3; }
.news-featured__body p { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 767px) {
  .news-featured { flex-direction: column; }
  .news-featured__img { flex: none; max-height: 220px; }
  .news-featured__body { padding: 1.25rem; }
}

/* News: 2-column card grid */
.news-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .news-grid-2col { grid-template-columns: repeat(2, 1fr); } }

/* News card */
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); text-decoration: none; color: inherit; }
.news-card__img { overflow: hidden; aspect-ratio: 16/9; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.news-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary, #FFC200);
  background: rgba(255,194,0,0.1);
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
}
.news-card__body h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; margin: 0; }
.news-card__body p { font-size: 0.875rem; color: #555; line-height: 1.55; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 0.5rem; }
.news-card__date { font-size: 0.8rem; color: #888; }
.news-card__author { font-size: 0.8rem; color: #888; }
.news-read-more { font-size: 0.82rem; font-weight: 700; color: var(--color-primary, #FFC200); margin-top: 0.25rem; }

/* News article detail */
.news-hero-img { width: 100%; max-height: 460px; overflow: hidden; }
.news-hero-img img { width: 100%; height: 460px; object-fit: cover; display: block; }
.news-article-body { padding: 2rem 0; max-width: 860px; margin: 0 auto; }
.news-article-meta { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.news-article-meta strong { color: #333; }
.news-article-excerpt { font-size: 1.05rem; font-weight: 600; color: #333; margin-bottom: 1.5rem; line-height: 1.55; }
.news-article-content { line-height: 1.75; color: #333; }
.news-article-content p { margin-bottom: 1.25rem; }
.news-article-content h2, .news-article-content h3 { font-weight: 700; margin: 2rem 0 0.75rem; }
.news-article-content img { max-width: 100%; height: auto; border-radius: 4px; }
.news-article-content a { color: var(--color-primary, #FFC200); }

/* =============================================
   17. STATS BAR (legacy)
   ============================================= */

.stats-bar {
  background: #1A1A1A;
  color: #fff;
  padding: 2rem 0;
}

.stats-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  padding: 1.5rem 2rem;
  text-align: center;
  flex: 1 1 140px;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFC200;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* =============================================
   18. CTA BANNER (legacy)
   ============================================= */

.cta-banner {
  background: #FFC200;
  padding: 60px 0;
  text-align: center;
}

.cta-banner__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.cta-banner__body {
  font-size: 15px;
  color: rgba(26,26,26,0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================
   19. CONTACT FORM (legacy)
   ============================================= */

.contact-form { max-width: 640px; }
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.form-control {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: #FFC200;
  box-shadow: 0 0 0 3px rgba(255,194,0,0.15);
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* =============================================
   20. SITE CARDS (legacy – Group index)
   ============================================= */

.site-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .site-selector { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .site-selector { grid-template-columns: repeat(4, 1fr); } }

.site-card {
  border: 1px solid #e0e0e0;
  border-left: 4px solid #FFC200;
  border-radius: 2px;
  padding: 1.5rem;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }

.site-card__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.site-card__desc { font-size: 13px; color: #555; flex: 1; }
.site-card__link { font-size: 13px; font-weight: 600; color: #FFC200; }

/* =============================================
   21. REGION SELECTOR (legacy)
   ============================================= */

.region-selector { padding: var(--section-padding) 0; }
.region-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .region-grid { grid-template-columns: repeat(3, 1fr); } }

.region-card {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 1.5rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.region-card:hover { border-color: #FFC200; }
.region-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: #1A1A1A; }

/* =============================================
   22. MISC UTILITY
   ============================================= */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hidden { display: none !important; }
.text-center { text-align: center; }

/* Breadcrumb */
.breadcrumb { padding: 0.75rem 0; border-bottom: 1px solid #e0e0e0; margin-bottom: 2rem; }
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; list-style: none; }
.breadcrumb__list li { font-size: 12px; color: #888; }
.breadcrumb__list li a { color: #888; text-decoration: none; }
.breadcrumb__list li a:hover { color: #FFC200; }
.breadcrumb__list li + li::before { content: '/'; margin: 0 6px; color: #ccc; }
.breadcrumb__list li:last-child { color: #333; font-weight: 500; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 2000; display: none; align-items: center; justify-content: center;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%; color: #fff; font-size: 1.5rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* =============================================
   23. SITE-SPECIFIC COLOUR OVERRIDES
   ============================================= */

.site-mining { --color-primary: #FFC200; --color-secondary: #1A1A1A; }
.site-forestry { --color-primary: #2E7D32; --color-secondary: #1A1A1A; }
.site-bell-za { --color-primary: #003DA5; --color-secondary: #FFC200; }
.site-bell-uk { --color-primary: #003DA5; --color-secondary: #1A1A1A; }

/* Dark header colour adjustments for sub-sites */
.site-forestry .site-header--dark { background: #1A2E1A; }
.site-bell-za .site-header--dark { background: #001A5E; }
.site-bell-uk .site-header--dark { background: #001A5E; }

/* Product grid */
.product-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Spec table */
.spec-table-wrapper { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #e0e0e0; }
.spec-table th { background: #f5f5f5; font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: 0.05em; color: #1A1A1A; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 3rem; flex-wrap: wrap; }
.pagination__item a, .pagination__item span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid #ddd; border-radius: 2px;
  font-size: 13px; font-weight: 500; color: #333; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.pagination__item a:hover, .pagination__item.active span {
  background: #FFC200; border-color: #FFC200; color: #1A1A1A;
}

/* Article content */
.article-content { max-width: 740px; margin: 0 auto; }
.article-content p { margin-bottom: 1.5rem; font-size: 15px; line-height: 1.8; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

/* ── Product Detail Page (pd-*) ──────────────────────────── */

/* Category heading — product pages use the about-us heading row style */

/* Hero — WHITE background */
.pd-hero {
  background: #fff;
  padding: 40px 0 0;
}
.pd-hero .container {
  max-width: 1600px;
}
.pd-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pd-hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.pd-hero__image {
  display: flex; align-items: center; justify-content: center;
}
.pd-hero__image img {
  width: 80%; height: auto; object-fit: contain;
}
.pd-hero__image-placeholder {
  width: 100%; aspect-ratio: 16/9; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center; color: #ccc;
}
.pd-hero__info {
  display: flex; flex-direction: column; gap: 0;
}
.pd-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; line-height: 1.15; margin: 0; color: var(--color-primary, #1a1a1a);
}
/* Divider below title — 3px solid dark, 20px padding */
.pd-hero__divider {
  border: none;
  border-top: 3px solid var(--color-primary, #1a1a1a);
  margin: 20px 0;
  width: 100%;
}
/* Specs + Downloads 2-column row */
.pd-hero__specs-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  margin-bottom: 20px;
  align-items: start;
}
.pd-hero__quickspecs { margin: 0; }
.pd-hero__quickspecs p {
  font-size: 14px; color: #1a1a1a; margin: 0 0 4px; line-height: 1.6;
}
.pd-hero__quickspecs p strong { color: #1a1a1a; font-weight: 700; }
.pd-hero__downloads {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.pd-hero__downloads li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #1a1a1a;
  text-decoration: none; transition: color 0.2s;
}
.pd-hero__downloads li a:hover { color: #FDBA31; }
.pd-hero__downloads li a svg { fill: #1a1a1a; flex-shrink: 0; }

/* Tab nav — 2×2 grid of white buttons (matching reference) */
.pd-nav__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.pd-nav__btn {
  flex: 1 1 calc(47% - 10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: #fff;
  color: var(--color-primary, #1a1a1a) !important;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.pd-nav__btn:hover,
.pd-nav__btn.active {
  background: var(--color-primary, #1a1a1a);
  color: #fff !important;
}

/* Request a quote — centered below hero grid */
.pd-quote-wrap {
  text-align: center;
  padding: 0 0 50px;
}
.pd-quote {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-primary, #1a1a1a);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.34);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid var(--color-primary, #1a1a1a);
}
.pd-quote:hover { background: #fff; color: var(--color-primary, #1a1a1a) !important; border-color: var(--color-primary, #1a1a1a); }
.pd-quote--outline { background: #fff; color: var(--color-primary, #1a1a1a) !important; }
.pd-quote--outline:hover { background: var(--color-primary, #1a1a1a); color: #fff !important; }

/* ── Section header (careers-style) ───────────────────────── */
.pd-section-header {
  background: #EBEBEB;
  padding: 1.25rem 0;
  margin-top: 30px;
}
.pd-section-header h2 {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.75rem; font-weight: 700;
  color: #1a1a1a; margin: 0;
}
.pd-section-header--dark {
  background: #1a1a1a;
}
.pd-section-header--dark h2 { color: #FDBA31; }

/* ── Shared section styles ─────────────────────────────────── */
.pd-section { padding: 3.5rem 0; }
.pd-section--light { background: #f0f0f0; }
.pd-section--white { background: #fff; }
.pd-section--gold  { background: #FDBA31; }

/* ── Back to top ───────────────────────────────────────────── */
.pd-back-top-row { display: flex; justify-content: center; padding-top: 2rem; }
.pd-back-top {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  background: transparent; color: #333 !important;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.85rem; text-transform: uppercase;
  text-decoration: none !important; transition: color 0.2s;
}
.pd-back-top:hover { color: #000 !important; }
.pd-back-top svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }
.pd-back-top--gold { color: #1a1a1a !important; }
.pd-back-top--gold:hover { color: #000 !important; }

/* ── Overview — 2 columns ──────────────────────────────────── */
.pd-overview__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
@media (min-width: 768px) {
  .pd-overview__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.pd-overview__text { color: #333; line-height: 1.7; }

/* ── Responsive video wrapper ──────────────────────────────── */
.pd-video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
}
.pd-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── Technical data — light bg ─────────────────────────────── */
.pd-techdata__downloads {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 6px;
}
.pd-techdata__downloads--dark li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #1a1a1a;
  text-decoration: none; transition: color 0.2s;
}
.pd-techdata__downloads--dark li a:hover { color: var(--color-primary, #1a1a1a); }
.pd-techdata__downloads--dark li a svg { fill: var(--color-primary, #1a1a1a); flex-shrink: 0; }
.pd-spec-table { width: 100%; border-collapse: collapse; }
.pd-spec-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.pd-spec-table td { padding: 10px 14px; font-size: 14px; color: #444; }
.pd-spec-table td:first-child { font-weight: 600; width: 45%; color: #1a1a1a; }
.pd-spec-table--light tr:nth-child(even) { background: #f9f9f9; }

/* ── Innovation & Technology — video slider ────────────────── */
.pd-innovation-slider {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.2) transparent;
}
.pd-innovation-slider::-webkit-scrollbar { height: 4px; }
.pd-innovation-slider::-webkit-scrollbar-track { background: transparent; }
.pd-innovation-slider::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); border-radius: 2px; }
.pd-innovation-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  min-width: 280px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  padding: 1rem;
}
@media (max-width: 640px) { .pd-innovation-card { flex: 0 0 85%; } }
.pd-innovation-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: #1a1a1a; margin: 0.75rem 0 0; text-align: center;
}

/* Gallery */
.pd-gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .pd-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pd-gallery { grid-template-columns: repeat(4, 1fr); } }
.pd-gallery__item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.pd-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.pd-gallery__item:hover img { transform: scale(1.05); }
.pd-gallery__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; color: #fff;
}
.pd-gallery__item:hover .pd-gallery__overlay { opacity: 1; }

/* CTA section */
.pd-cta { text-align: center; padding: 1rem 0; }
.pd-cta__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: #1a1a1a; margin-bottom: 1rem;
}
.pd-cta__body { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto 1.5rem; }
.pd-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.pd-btn {
  display: inline-block; padding: 12px 32px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background 0.2s, color 0.2s;
  border-radius: 30px;
}
.pd-btn--dark { background: #1a1a1a; color: #FDBA31; }
.pd-btn--dark:hover { background: #FDBA31; color: #1a1a1a; }
.pd-btn--outline-dark { background: transparent; color: #1a1a1a; border: 2px solid #1a1a1a; }
.pd-btn--outline-dark:hover { background: #1a1a1a; color: #fff; }
.article-content blockquote { border-left: 4px solid #FFC200; padding: 1rem 1.5rem; background: #f9f9f9; margin: 2rem 0; }

/* Group header logo padding override */
#logo_main { --padding-top: 5px !important; }

/* =============================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================= */

/* --- Group header: sticky on mobile, tighten container --- */
@media (max-width: 767px) {
  .bell-page.bell-header.bell-location-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  /* Constrain outer padding */
  .bell-page.bell-header .bell-el-e8fdb87 {
    padding: 0 12px !important;
    min-height: 56px !important;
  }

  /* Align logo + utility row + hamburger in one row */
  .bell-page.bell-header .bell-con-inner {
    min-height: 56px;
    align-items: center;
  }

  /* Logo: small on mobile, no protruding shadow */
  .bell-page.bell-header .bell-el-40a54ad {
    flex: 0 0 auto !important;
    max-width: none !important;
    padding-top: 0 !important;
  }
  .bell-page.bell-header .bell-el-40a54ad img {
    height: 38px !important;
    width: auto !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
  }

  /* Right column (utility + nav): shrink to just the lang selector */
  .bell-page.bell-header .bell-el-fd40901 {
    flex: 1 !important;
  }

  /* Hide search and utility text links from header on mobile */
  .bell-page.bell-header .bell-widget-search,
  .bell-page.bell-header .bell-el-1ae69ea .bell-widget-text-editor {
    display: none !important;
  }

  /* Compact utility row spacing */
  .bell-page.bell-header .bell-el-1ae69ea {
    padding: 4px 0 !important;
    justify-content: flex-end !important;
    min-height: 0 !important;
  }
}

/* --- Mobile subsite navigation --- */
.bell-mobile-subsite-nav {
  display: none;
}

@media (max-width: 767px) {
  .bell-mobile-subsite-nav {
    display: block;
    background: #fff;
    border-top: 4px solid #FFC200;
    border-bottom: 4px solid #FFC200;
    padding: 20px 16px 24px;
  }

  .bell-mobile-subsite-nav__title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    text-align: center;
    margin: 0 0 14px;
  }

  /* Row 1: 2-column grid for Mining & Forestry */
  .bell-mobile-subsite-nav__grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  /* Row 2: 3-column grid for BHI / South Africa / UK */
  .bell-mobile-subsite-nav__grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* Shared card appearance */
  .bell-mobile-subsite-expand,
  .bell-mobile-subsite-nav__direct {
    border: 1px solid #e8e8e8;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
  }

  /* When open, span both columns of the 2-col grid */
  .bell-mobile-subsite-expand[open] {
    grid-column: 1 / -1;
    border-color: #FFC200;
    background: #fff;
  }

  /* Summary = the logo card face */
  .bell-mobile-subsite-expand__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 80px;
  }

  /* Remove default browser marker */
  .bell-mobile-subsite-expand__summary::-webkit-details-marker { display: none; }
  .bell-mobile-subsite-expand__summary::marker { display: none; }

  .bell-mobile-subsite-expand__summary img {
    max-width: 130px;
    max-height: 58px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Region list — appears below logo when open */
  .bell-mobile-subsite-expand__regions {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e8e8e8;
  }

  .bell-mobile-subsite-expand__regions a {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
  }

  .bell-mobile-subsite-expand__regions a:last-child { border-bottom: none; }

  .bell-mobile-subsite-expand__regions a:hover,
  .bell-mobile-subsite-expand__regions a:focus {
    background: #fffbf0;
    color: #1A1A1A;
  }

  /* Direct-link cards (BHI / BESSA / UK) */
  .bell-mobile-subsite-nav__direct {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    text-decoration: none;
    min-height: 80px;
  }

  .bell-mobile-subsite-nav__direct:hover,
  .bell-mobile-subsite-nav__direct:focus {
    border-color: #FFC200;
    background: #fffbf0;
  }

  .bell-mobile-subsite-nav__direct img {
    max-width: 110px;
    max-height: 52px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* --- Group header hamburger toggle (bell-menu-toggle acting as nav-toggle) --- */
.bell-menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* Show hamburger icon, hide close icon by default */
.bell-menu-toggle .bell-menu-toggle-close { display: none; }
.bell-menu-toggle .bell-menu-toggle-open  { display: block; }

/* When drawer is open, swap icons */
.bell-menu-toggle[aria-expanded="true"] .bell-menu-toggle-open  { display: none; }
.bell-menu-toggle[aria-expanded="true"] .bell-menu-toggle-close { display: block; }

.bell-menu-toggle .bell-icon-svg {
  width: 22px;
  height: 22px;
  fill: #1A1A1A;
}

/* --- Sub-site dark header: leave room for hamburger toggle --- */
@media (max-width: 1023px) {
  .site-header--dark .header-dark__top {
    padding-right: 64px;
  }
}

/* --- Product detail: single column layout on small screens --- */
@media (max-width: 640px) {
  .pd-hero__specs-row {
    grid-template-columns: 1fr;
  }

  .pd-hero__image img {
    width: 100%;
  }

  .pd-nav__btn {
    flex: 1 1 100%;
  }

  .pd-section { padding: 1.75rem 0; }
}

/* --- Sections: reduce padding on mobile --- */
@media (max-width: 767px) {
  .bell-region-section { padding: 32px 0 24px; }
  .bell-news-section   { padding: 32px 0 16px; }
  .bell-innovation-section { padding: 32px 0; }
  .bell-contact-section { padding: 28px 0 40px; }
  .cta-banner { padding: 40px 0; }
  .section { padding: 40px 0; }
}

/* --- Hero content on small screens --- */
@media (max-width: 480px) {
  .hero__content { padding: 1rem 1.25rem; }
  .hero__headline { font-size: 1.35rem; }
  .news-hero-img img { height: 200px; }
  .news-article-body { padding: 1.25rem 0; }
}

/* --- Contact form: full-width inputs on mobile --- */
@media (max-width: 480px) {
  .bell-form-row { grid-template-columns: 1fr; }
}

/* --- Footer: stack cols on very small screens --- */
@media (max-width: 479px) {
  .footer-cols { grid-template-columns: 1fr !important; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.bell-breadcrumbs {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: .45rem 0;
}

.bell-breadcrumbs__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .2rem .35rem;
  font-family: var(--font-body, sans-serif);
  font-size: .8rem;
  color: #666;
}

.bell-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.bell-breadcrumbs__item:not(:last-child)::after {
  content: '\203A';
  color: #aaa;
  font-size: .9rem;
  line-height: 1;
}

.bell-breadcrumbs__link {
  color: #666;
  text-decoration: none;
  transition: color .15s;
}

.bell-breadcrumbs__link:hover {
  color: var(--color-primary, #FFC200);
  text-decoration: none;
}

.bell-breadcrumbs__current {
  color: #333;
  font-weight: 600;
}

/* =============================================
   Geo-Routing Popup
   ============================================= */
.geo-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  background: rgba(0,0,0,0);
  transition: opacity .3s ease, background .3s ease;
}

.geo-popup--visible {
  background: rgba(0,0,0,.35);
}

.geo-popup--visible {
  opacity: 1;
  pointer-events: auto;
}

.geo-popup__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  padding: 1.75rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(24px);
  transition: transform .3s ease;
}

.geo-popup--visible .geo-popup__card {
  transform: translateY(0);
}

.geo-popup__icon {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.geo-popup__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .5rem;
}

.geo-popup__message {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.geo-popup__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.geo-popup__btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  transition: opacity .2s;
}

.geo-popup__btn:hover { opacity: .85; }

.geo-popup__btn--primary {
  background: var(--color-primary, #FFC200);
  color: var(--color-btn-text, #1A1A1A);
}

.geo-popup__btn--secondary {
  background: var(--color-primary, #FFC200);
  color: var(--color-btn-text, #1A1A1A);
}

@media (max-width: 480px) {
  .geo-popup__card { padding: 1.25rem 1rem; }
  .geo-popup__actions { flex-direction: column; }
  .geo-popup__btn { width: 100%; text-align: center; }
}

/* =============================================
   GEO BANNER — slide-out globe tab (top-right)
   Toggle and panel are independently positioned
   so the toggle is always visible at the right
   edge while the panel slides in beside it.
   ============================================= */

/* Wrapper — zero-size, only used for display:none toggling via [hidden].
   All visible children use position:fixed independently. */
.geo-banner {
  display: block;
  width: 0;
  height: 0;
}

/* Globe toggle — always fixed at top-right edge */
.geo-banner__toggle {
  position: fixed;
  top: 5.5rem;
  right: 0;
  z-index: 8501;
  width: 44px;
  height: 48px;
  background: var(--color-primary, #FFC200);
  border: none;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-btn-text, #1A1A1A);
  box-shadow: -3px 2px 10px rgba(0,0,0,.18);
  transition: background .2s, color .2s;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}

.geo-banner--ready .geo-banner__toggle {
  opacity: 1;
  pointer-events: auto;
}

.geo-banner__toggle:hover,
.geo-banner__toggle:active {
  background: var(--color-secondary, #1A1A1A);
  color: var(--color-primary, #FFC200);
}

.geo-banner__toggle:focus {
  outline: 2px solid var(--color-primary, #FFC200);
  outline-offset: -2px;
}

.geo-banner__toggle:focus:not(:focus-visible) {
  outline: none;
}

/* Panel — positioned flush to the left of the toggle */
.geo-banner__panel {
  position: fixed;
  top: 5.5rem;
  right: 44px;   /* sits directly left of the toggle */
  z-index: 8500;
  width: 260px;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 2px 18px rgba(0,0,0,.13);
  border-top: 3px solid var(--color-primary, #FFC200);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  /* Hidden off-screen to the right by default */
  transform: translateX(calc(100% + 44px));
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}

.geo-banner--open .geo-banner__panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.geo-banner__text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-secondary, #1A1A1A);
  margin: 0;
  line-height: 1.4;
}

.geo-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.geo-banner__link {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  padding: .28rem .7rem;
  border-radius: 4px;
  background: var(--color-primary, #FFC200);
  color: var(--color-btn-text, #1A1A1A);
  text-decoration: none;
  transition: opacity .2s;
}

.geo-banner__link:hover { opacity: .8; }

@media (max-width: 480px) {
  .geo-banner__toggle { top: 4rem; }
  .geo-banner__panel  { top: 4rem; width: 200px; right: 44px; }
}

/* =============================================
   KLARO COOKIE CONSENT — per-site branding
   Banner uses a white background with dark text
   so it is always readable regardless of the
   site colour scheme. Primary colour is used
   only for button fills and accents.
   ============================================= */

/* Banner and modal backgrounds — always light */
.cookie-notice,
.cookie-modal .cm-modal {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

/* Force ALL text inside the cookie UI to dark — Klaro CDN sets element-specific white */
.cookie-notice *,
.cookie-modal .cm-modal * {
  color: #1a1a1a !important;
}

/* Button colours restored below (those rules come after and take precedence) */

/* Accept / primary action button */
.cm-btn.cm-btn-success,
.cm-btn.cm-btn-accept-all,
.cm-btn.cm-btn-accept {
  background-color: var(--color-primary, #FFC200) !important;
  color: #ffffff !important;
  border-color: var(--color-primary, #FFC200) !important;
}

.cm-btn.cm-btn-success:hover,
.cm-btn.cm-btn-accept-all:hover,
.cm-btn.cm-btn-accept:hover {
  filter: brightness(0.88) !important;
  color: #ffffff !important;
}

/* Secondary / decline / info buttons */
.cm-btn.cm-btn-decline,
.cm-btn.cm-btn-close,
.cm-btn:not(.cm-btn-success):not(.cm-btn-accept-all):not(.cm-btn-accept) {
  background-color: transparent !important;
  color: var(--color-primary, #FFC200) !important;
  border-color: var(--color-primary, #FFC200) !important;
}

.cm-btn.cm-btn-decline:hover,
.cm-btn.cm-btn-close:hover,
.cm-btn:not(.cm-btn-success):not(.cm-btn-accept-all):not(.cm-btn-accept):hover {
  background-color: var(--color-primary, #FFC200) !important;
  color: #ffffff !important;
}

/* "Let me choose" link */
.cm-link,
.cm-link:visited {
  color: var(--color-primary, #FFC200) !important;
}

.cm-link:hover {
  filter: brightness(0.8) !important;
}

/* Toggle switches (on state) */
.cm-list-input:checked + .cm-list-label .slider,
.cm-toggle-all .slider {
  background-color: var(--color-primary, #FFC200) !important;
}

/* Notice/modal title bar accent */
.cookie-notice .cn-title,
.cookie-modal .cm-modal .cm-header {
  border-color: var(--color-primary, #FFC200) !important;
  color: #1a1a1a !important;
}

/* =============================================
   SIDE TABS — sticky "Message Us" + "Dealer Locator"
   Fixed to the right edge, vertically centred,
   text rotated so it reads bottom-to-top.
   ============================================= */
.bell-side-tabs {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bell-side-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  background-color: var(--color-primary, #FFC200);
  color: var(--color-btn-text, #1A1A1A);
  font-family: var(--font-body, sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px 0 0 4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: padding-right 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  box-shadow: -2px 0 6px rgba(0,0,0,0.15);
}

.bell-side-tab:hover,
.bell-side-tab:focus {
  padding-right: 14px;
  background-color: var(--color-secondary, #1A1A1A);
  color: var(--color-primary, #FFC200);
  text-decoration: none;
}

/* Hide on very small screens where they'd cover content */
@media (max-width: 480px) {
  .bell-side-tabs {
    display: none;
  }
}

/* ============================================================
   PARTS & SERVICE PAGE — ps-* styles
   ============================================================ */

.ps-hero-subtext {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0 0;
}

/* ── Intro text ────────────────────────────────────────────── */
.ps-intro {
  padding: 2rem 0 1rem;
}
.ps-intro__text {
  font-size: 1.15rem;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* ── Service cards section ─────────────────────────────────── */
.ps-cards-section {
  background: #f5f5f5;
  padding: 3rem 0;
}

.ps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ps-card {
  background: #fff;
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.ps-card:hover {
  box-shadow: 0 0 14px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
}

.ps-card__img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #e0e0e0;
}

.ps-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ps-card__img--placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
}

.ps-card__body {
  padding: 0 2rem 2.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-card__title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 1.75rem 0 0.25rem;
  line-height: 1.3;
}

.ps-card__divider {
  width: 50%;
  height: 2px;
  background: var(--color-primary, #FFC200);
  margin: 0.75rem 0;
}

.ps-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  min-height: 5rem;
  margin: 0;
}

/* ── Innovation & Technology video section ─────────────────── */
.ps-video-section {
  background: #fff;
  padding: 0 0 3rem;
}

.ps-video-section__heading {
  margin-bottom: 2rem;
}

.ps-video-section__heading h2 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ps-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ps-video-item__embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.ps-video-item__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ps-video-item__thumb {
  width: 100%;
  height: auto;
  display: block;
}

.ps-video-item__title {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0.75rem 0 0;
}

/* ── Contact strip ─────────────────────────────────────────── */
.ps-contact-strip {
  background: #EBEBEB;
  padding: 2rem 0;
}

.ps-contact-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ps-contact-strip__inner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ps-contact-strip__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ps-cards-grid {
    grid-template-columns: 1fr;
  }

  .ps-video-grid {
    grid-template-columns: 1fr;
  }

  .ps-contact-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ps-card__img {
    height: 200px;
  }
}


/* ── YouTube facade (lazy-load thumbnails, replace with iframe on click) ── */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.yt-facade:hover img { opacity: 1; }
.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.15s;
}
.yt-facade:hover .yt-facade__play { transform: translate(-50%, -50%) scale(1.12); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
