
.wave-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 120px;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100vw;
  pointer-events: none;
  z-index: 2;

background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 59L50 55C100 51 200 44 300 30C400 15 500 -6 600 1C700 8 800 44 900 59C1000 73 1100 66 1150 62L1200 59V80H1150C1100 80 1000 80 900 80C800 80 700 80 600 80C500 80 400 80 300 80C200 80 100 80 50 80H0V59Z' fill='%23f9f9f9'/%3E%3C/svg%3E");
}

.slanted-edge {
  --p: 70px;
  width: 100%;
  height: 180px;
  background: #FBF115;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 calc(100% - var(--p))
  );
}

.slanted-edge-2 {
  --p: 70px;
  width: 100%;
  height: 180px;
  background: #FBF115;

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--p)),
    0 100%
  );
}

.slanted-edge-3 {
  --p: 70px;
  width: 100%;
  height: 180px;
  background: #FBF115;

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--p)),
    0 100%
  );
}

.slanted-edge-4 {
  --p: 70px;
  width: 100%;
  height: 180px;
  background: #FBF115;

  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 calc(100% - var(--p))
  );
}

/* decorate dots */
@media (max-width: 921px) {
  .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link {
    text-align: center;
    border-bottom: 0.3em dotted #FBF115;
    padding-bottom: 5px;
  }

  /* Remove dots when active */
  .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item.current-menu-item > .menu-link,
  .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item.current_page_item > .menu-link,
  .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item.current-menu-parent > .menu-link {
    border-bottom: none;
  }

  .ast-builder-menu-mobile .main-header-menu .menu-item.current-menu-item > .menu-link,
  .ast-builder-menu-mobile .main-header-menu .menu-item.current_page_item > .menu-link {
    display: block;
    background-image: url('https://webelong.staging.kikimungo.nyallo.net/wp-content/uploads/2026/04/we-belong-elements-RGB-09.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: 8rem;
    padding-bottom: 20px;
  }

  .wave-container::after {
    height: 90px;
    bottom: -18px;
    background-size: 180vw 90px;
    background-position: center bottom;
  }

  .ast-right-sidebar .site-content > .ast-container,
  .ast-left-sidebar .site-content > .ast-container {
    display: flex;
    flex-direction: column;
  }

  .ast-right-sidebar #secondary,
  .ast-left-sidebar #secondary {
    order: -1;
    width: 100%;
  }

  .ast-right-sidebar #primary,
  .ast-left-sidebar #primary {
    width: 100%;
  }
}

@media (max-width: 921px) {

  /* NORMAL state (all menu items) */
.ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link {
  background-color: #273778 !important; /* dark blue */
  color: #ffffff !important;            /* white text */
}

/* ACTIVE state (current page / current item) */
.ast-builder-menu-mobile .main-header-menu .menu-item.current-menu-item > .menu-link,
.ast-builder-menu-mobile .main-header-menu .menu-item.current_page_item > .menu-link,
.ast-builder-menu-mobile .main-header-menu .menu-item.current-menu-ancestor > .menu-link {
  background-color: #D1D5DB !important; /* grey */
  color: #000000 !important;            /* black text */
}

/* optional: keep hover behavior separate (you said it's fine, but harmless) */
.ast-builder-menu-mobile .main-header-menu .menu-item > .menu-link:hover {
  opacity: 0.9;
}