/* Box the header content so it's not full width */
@media (min-width: 1024px) {
    #site-header .header-inner {
        max-width: 1200px;   /* tweak: 1000–1200px */
        margin: 0 auto;      /* centre the header content */
        padding: 0;
    }
}

/* ===== Desktop default (> 1200px) ===== */
.site-header .site-branding img.custom-logo {
    height: 52px;              /* desktop logo size */
    width: auto;
    max-height: none;
    max-width: none;
    margin: 0;
}

/* Desktop menu links (main + mobile dropdown) */
.site-header .site-navigation ul li a,
.site-header .site-navigation-dropdown ul li a {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
		font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

/* Medium screens / tablets (< 1200px) */
@media (max-width: 1200px) {
    .site-header .site-branding img.custom-logo {
        height: 40px;          /* smaller logo from 1200px down */
    }

    .site-header .site-navigation ul li a,
    .site-header .site-navigation-dropdown ul li a {
        font-size: 15px;
			  padding: 10px 8px;
    }

    #site-header .header-inner {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* ===== Phones (< 768px) ===== */
@media (max-width: 767px) {
    .site-header {
        padding-inline-end: 15px;
        padding-inline-start: 15px;
    }
}

@media screen and (max-width: 768px) {
    .site-header .site-branding img.custom-logo {
        width: 200px;          /* phone size */
    }

    .site-header .site-navigation ul li a,
    .site-header .site-navigation-dropdown ul li a {
        font-size: 15px;
    }

    #site-header .header-inner {
        padding: 0px;
    }
}

/* ===== Mobile menu styles (< 768px) ===== */
@media (max-width: 767px) {

  /* Panel background (the white area) */
  #site-header .site-navigation-dropdown ul.menu {
    background-color: #1B1B1B !important;       /* black panel */
    border-top: 1px solid #222;
  }

  /* Each menu row */
  #site-header .site-navigation-dropdown ul.menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Links inside the mobile menu */
  #site-header .site-navigation-dropdown ul.menu > li > a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: transparent;
  }

  /* Active / current page */
  #site-header .site-navigation-dropdown ul.menu > li.current-menu-item > a,
  #site-header .site-navigation-dropdown ul.menu > li.current_page_item > a {
    background-color: #222;
  }
}/* END NAV */

/* Base: solid green background */
.a2b-traffic-gradient {
  position: relative;
  background-color: #63B144; /* green */
  overflow: hidden;
}

/* Overlay: traffic-light gradient that we fade out */
.a2b-traffic-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #F6130E 0%,
    #F17C16 40%,
    #63B144 100%
  );
  opacity: var(--grad-opacity, 1); /* 1 = full gradient, 0 = all green */
  pointer-events: none;
  transition: opacity 0.12s linear; /* smooth, but driven by scroll */
}

.a2b-instructors {
  position: relative;
}

.a2b-instructors::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 0;
  bottom: 15%;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F6130E 0%, #F17C16 50%, #63B144 100%);
}