.aba-fmm,
.aba-fmm * {
  box-sizing: border-box;
}

.aba-fmm {
  --aba-fmm-line: color-mix(in srgb, var(--aba-fmm-ink), transparent 86%);
  --aba-fmm-shadow: 0 24px 70px color-mix(in srgb, var(--aba-fmm-ink), transparent 82%);
  position: relative;
  z-index: 99999;
  width: 100%;
  color: var(--aba-fmm-ink);
  font-family: inherit;
}

.aba-fmm a {
  color: inherit;
  text-decoration: none;
}

.aba-fmm ul,
.aba-fmm li {
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.aba-fmm li::marker {
  content: "" !important;
  font-size: 0 !important;
}

.aba-fmm li::before,
.aba-fmm li::after {
  content: none !important;
  display: none !important;
}

.aba-fmm-inner {
  width: min(1220px, calc(100vw - 34px));
  margin-inline: auto;
}

.aba-fmm-top-note {
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--aba-fmm-top-text);
  background: var(--aba-fmm-top-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  max-height: 80px;
  opacity: 1;
  transition: max-height 260ms ease, padding 260ms ease, opacity 220ms ease, border-color 260ms ease;
}

.aba-fmm-mainbar {
  width: 100%;
  background: color-mix(in srgb, var(--aba-fmm-cream), white 9%);
  border-bottom: 1px solid var(--aba-fmm-line);
  box-shadow: 0 10px 34px color-mix(in srgb, var(--aba-fmm-ink), transparent 94%);
}

.aba-fmm-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.4vw, 34px);
}

.aba-fmm-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.aba-fmm-logo img {
  display: block;
  width: auto;
  max-width: 188px;
  max-height: 70px;
}

.aba-fmm-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 28px);
  flex: 1 1 auto;
}

.aba-fmm-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.aba-fmm-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 31px 0 29px;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.005em;
  color: var(--aba-fmm-ink);
  transition: color 220ms ease;
}

.aba-fmm-nav-link::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 50%;
  height: 42px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--aba-fmm-green), transparent 88%);
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: -1;
}

.aba-fmm-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  height: 2px;
  background: var(--aba-fmm-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.aba-fmm-nav-item:hover .aba-fmm-nav-link,
.aba-fmm-nav-item:focus-within .aba-fmm-nav-link {
  color: var(--aba-fmm-green);
}

.aba-fmm-nav-item:hover .aba-fmm-nav-link::before,
.aba-fmm-nav-item:focus-within .aba-fmm-nav-link::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.aba-fmm-nav-item:hover .aba-fmm-nav-link::after,
.aba-fmm-nav-item:focus-within .aba-fmm-nav-link::after {
  transform: scaleX(1);
}

.aba-fmm-chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 220ms ease;
  display: inline-block;
  font-size: 0 !important;
  line-height: 0 !important;
}

.aba-fmm-nav-item:hover .aba-fmm-chev,
.aba-fmm-nav-item:focus-within .aba-fmm-chev,
.aba-fmm-nav-item.is-open .aba-fmm-chev {
  transform: translateY(1px) rotate(-135deg);
}

.aba-fmm-mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(860px, calc(100vw - 32px));
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px) scale(0.985);
  transition: opacity 230ms ease, transform 230ms ease, visibility 230ms ease;
}

.aba-fmm-nav-item:hover .aba-fmm-mega,
.aba-fmm-nav-item:focus-within .aba-fmm-mega,
.aba-fmm-nav-item.is-open .aba-fmm-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.aba-fmm-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--aba-fmm-ink), transparent 87%);
  border-radius: 20px;
  box-shadow: var(--aba-fmm-shadow);
  overflow: hidden;
}

.aba-fmm-count-1,
.aba-fmm-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
  margin-inline: auto;
}

.aba-fmm-count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 330px;
}

.aba-fmm-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  color: var(--aba-fmm-ink);
  background: var(--aba-fmm-cream);
  border: 1px solid color-mix(in srgb, var(--aba-fmm-ink), transparent 91%);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.aba-fmm-card:hover,
.aba-fmm-card:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--aba-fmm-green), transparent 70%);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--aba-fmm-ink), transparent 84%);
  outline: none;
}

.aba-fmm-card-image {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--aba-fmm-green), transparent 52%), color-mix(in srgb, var(--aba-fmm-accent), transparent 54%));
}

.aba-fmm-card-image img,
.aba-fmm-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}

.aba-fmm-card-placeholder {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.45), transparent 24%),
    linear-gradient(135deg, color-mix(in srgb, var(--aba-fmm-green), transparent 52%), color-mix(in srgb, var(--aba-fmm-accent), transparent 46%));
}

.aba-fmm-card:hover img,
.aba-fmm-card:focus-visible img,
.aba-fmm-card:hover .aba-fmm-card-placeholder,
.aba-fmm-card:focus-visible .aba-fmm-card-placeholder {
  transform: scale(1.08);
}

.aba-fmm-card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 18px;
  background: color-mix(in srgb, var(--aba-fmm-cream), white 2%);
}

.aba-fmm-card-kicker {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 28px);
  min-height: 28px;
  padding: 7px 11px 6px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--aba-fmm-ink), transparent 8%);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.aba-fmm-card-copy strong {
  display: block;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--aba-fmm-ink);
}

.aba-fmm-card-copy small {
  display: block;
  font-size: 15px;
  line-height: 1.38;
  color: color-mix(in srgb, var(--aba-fmm-ink), transparent 32%);
}

.aba-fmm-card-copy b {
  display: inline-block;
  margin-top: auto;
  font-size: 20px;
  line-height: 1;
  color: var(--aba-fmm-green);
  transition: transform 240ms ease;
}

.aba-fmm-card:hover b,
.aba-fmm-card:focus-visible b {
  transform: translateX(5px);
}

.aba-fmm-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.aba-fmm-socials {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.aba-fmm-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--aba-fmm-green);
  background: color-mix(in srgb, var(--aba-fmm-sand), white 30%);
  border: 1px solid var(--aba-fmm-line);
  transition: transform 230ms ease, background 230ms ease, color 230ms ease, border-color 230ms ease;
}

.aba-fmm-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.aba-fmm-social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.aba-fmm-social:hover,
.aba-fmm-social:focus-visible {
  color: #fff;
  background: var(--aba-fmm-green);
  border-color: var(--aba-fmm-green);
  transform: translateY(-2px);
  outline: none;
}

.aba-fmm-cta,
.aba-fmm-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 8px;
  background: #007f8f;
  color: white !important;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--aba-fmm-green), transparent 82%);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.aba-fmm-cta:hover,
.aba-fmm-mobile-cta:hover,
.aba-fmm-cta:focus-visible,
.aba-fmm-mobile-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--aba-fmm-ink);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--aba-fmm-ink), transparent 82%);
  outline: none;
}

.aba-fmm-toggle,
.aba-fmm-close,
.aba-fmm-mobile-parent {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.aba-fmm-toggle {
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--aba-fmm-sand), white 13%);
  border: 1px solid var(--aba-fmm-line);
}

.aba-fmm-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--aba-fmm-ink);
  border-radius: 999px;
}

.aba-fmm-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.aba-fmm-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(8, 22, 25, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.aba-fmm-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.aba-fmm-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, var(--aba-fmm-mobile-width));
  height: 100%;
  padding: 26px 30px 30px;
  background: #fff;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 290ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.aba-fmm-drawer.is-active .aba-fmm-drawer-panel {
  transform: translateX(0);
}

.aba-fmm-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--aba-fmm-line);
}

.aba-fmm-drawer-head img {
  max-width: var(--aba-fmm-mobile-logo);
  max-height: 58px;
  width: auto;
  height: auto;
}

.aba-fmm-close {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--aba-fmm-sand), white 18%);
  border: 1px solid var(--aba-fmm-line);
  color: var(--aba-fmm-ink);
  font-size: 30px;
  line-height: 1;
}

.aba-fmm-mobile-note {
  margin: 0 0 16px;
  padding: 13px 15px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--aba-fmm-sand), white 12%);
  color: color-mix(in srgb, var(--aba-fmm-ink), transparent 18%);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.aba-fmm-mobile {
  display: grid;
  gap: 0;
  list-style: none !important;
}

.aba-fmm-mobile-item {
  position: relative;
  border-bottom: 1px solid var(--aba-fmm-line);
}

.aba-fmm-mobile-item > a,
.aba-fmm-mobile-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  text-align: left;
  font-size: var(--aba-fmm-mobile-font);
  line-height: 1.12;
  font-weight: 900;
  color: var(--aba-fmm-ink);
}

.aba-fmm-mobile-parent em {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--aba-fmm-ink);
  font-size: 0;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 240ms ease;
}

.aba-fmm-mobile-parent[aria-expanded="true"] em {
  transform: translateY(3px) rotate(-135deg);
}

.aba-fmm-mobile-sub {
  display: grid;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 12px;
  transition: max-height 320ms ease, opacity 220ms ease, padding-bottom 220ms ease;
}

.aba-fmm-mobile-sub.is-open {
  opacity: 1;
  padding-bottom: 18px;
}

.aba-fmm-mobile-sub a {
  display: grid;
  gap: 4px;
  padding: 10px 0 10px 16px !important;
  border-left: 2px solid color-mix(in srgb, var(--aba-fmm-sand), white 4%);
  background: transparent !important;
  border-radius: 0;
  color: var(--aba-fmm-ink);
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.aba-fmm-mobile-sub a:hover,
.aba-fmm-mobile-sub a:focus-visible {
  color: var(--aba-fmm-green);
  border-left-color: var(--aba-fmm-green);
  transform: translateX(3px);
  outline: none;
}

.aba-fmm-mobile-sub span {
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--aba-fmm-green);
}

.aba-fmm-mobile-sub strong {
  font-size: var(--aba-fmm-mobile-sub-font);
  line-height: 1.12;
  font-weight: 900;
}

.aba-fmm-mobile-sub small {
  font-size: 14px;
  line-height: 1.35;
  color: color-mix(in srgb, var(--aba-fmm-ink), transparent 34%);
}

.aba-fmm-mobile-overview {
  font-weight: 900;
  color: var(--aba-fmm-green) !important;
}

.aba-fmm-mobile-actions {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--aba-fmm-line);
}

.aba-fmm-socials-mobile {
  justify-content: flex-start;
  gap: 26px;
}

.aba-fmm-socials-mobile .aba-fmm-social {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  gap: 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--aba-fmm-ink);
  box-shadow: none;
}

.aba-fmm-socials-mobile .aba-fmm-social:hover,
.aba-fmm-socials-mobile .aba-fmm-social:focus-visible {
  background: transparent;
  color: var(--aba-fmm-green);
  transform: translateY(-1px);
}

.aba-fmm-socials-mobile .aba-fmm-social span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  font-size: 18px;
  font-weight: 800;
}

.aba-fmm-mobile-cta {
  width: 100%;
  min-height: 54px;
}

body.aba-fmm-lock {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .aba-fmm-desktop,
  .aba-fmm-cta,
  .aba-fmm-socials-desktop {
    display: none;
  }

  .aba-fmm-toggle {
    display: inline-flex;
  }

  .aba-fmm-shell {
    justify-content: space-between;
    min-height: 90px;
  }

  .aba-fmm-mainbar {
    background: color-mix(in srgb, var(--aba-fmm-cream), white 4%);
  }
}

@media (max-width: 520px) {
  .aba-fmm-inner {
    width: min(100% - 28px, 1220px);
  }

  .aba-fmm-logo img {
    max-width: 150px;
  }

  .aba-fmm-drawer-panel {
    width: var(--aba-fmm-mobile-width);
    padding: 24px 30px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aba-fmm *,
  .aba-fmm *::before,
  .aba-fmm *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------------------
   v0.4 Sakatia original-site matching pass
   ------------------------------------------------------------------------- */
.aba-fmm {
  --aba-fmm-deep: #073041;
  --aba-fmm-ocean: #0b7280;
  --aba-fmm-coral: #df6f52;
  --aba-fmm-menu-white: #ffffff;
  --aba-fmm-card-cream: #fff8ed;
  --aba-fmm-soft-line: rgba(255, 255, 255, 0.16);
  z-index: 999999;
}

.aba-fmm-top-note {
  min-height: 45px;
  padding: 12px 0 11px;
  background: var(--aba-fmm-top-bg);
  color: var(--aba-fmm-top-text);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 800;
}

@media (min-width: 1121px) {
  .aba-fmm-inner {
    width: min(1220px, calc(100vw - 64px));
  }

  .aba-fmm-mainbar {
    background: linear-gradient(180deg, color-mix(in srgb, var(--aba-fmm-desktop-bg), transparent 24%), color-mix(in srgb, var(--aba-fmm-desktop-bg), transparent 52%));
    border-bottom: 1px solid var(--aba-fmm-soft-line);
    box-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
  }

  .aba-fmm-shell {
    min-height: 87px;
    gap: clamp(24px, 3vw, 54px);
  }

  .aba-fmm-logo img {
    max-width: var(--aba-fmm-desktop-logo);
    max-height: 64px;
    object-fit: contain;
    transition: filter 260ms ease, max-width 260ms ease;
  }

  .aba-fmm-logo-white-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo img {
    filter: brightness(0) invert(1);
  }

  .aba-fmm-desktop {
    justify-content: center;
    gap: clamp(14px, 1.55vw, 31px);
  }

  .aba-fmm-nav-link {
    padding: 0 9px;
    min-height: 58px;
    border-radius: 7px;
    color: #ffffff;
    font-size: var(--aba-fmm-desktop-font);
    font-weight: 900;
  }

  .aba-fmm-nav-link::before {
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 7px;
    transform: translateY(-50%) scale(0.92);
  }

  .aba-fmm-nav-link::after {
    display: none !important;
  }

  .aba-fmm-nav-item:hover .aba-fmm-nav-link,
  .aba-fmm-nav-item:focus-within .aba-fmm-nav-link,
  .aba-fmm-nav-item.is-open .aba-fmm-nav-link {
    color: #ffffff;
  }

  .aba-fmm-chev {
    width: 9px;
    height: 9px;
    border-width: 2px;
    transform: translateY(-3px) rotate(45deg);
  }

  .aba-fmm-actions {
    gap: 18px;
  }

  .aba-fmm-socials-desktop {
    gap: 26px;
  }

  .aba-fmm-socials-desktop .aba-fmm-social {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
  }

  .aba-fmm-socials-desktop .aba-fmm-social svg {
    width: 22px;
    height: 22px;
  }

  .aba-fmm-socials-desktop .aba-fmm-social:hover,
  .aba-fmm-socials-desktop .aba-fmm-social:focus-visible {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
  }

  .aba-fmm-cta {
    min-height: 43px;
    min-width: 110px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #007f8f;
    color: #fff !important;
    font-size: 16px;
    font-weight: 900;
    box-shadow: none;
  }

  .aba-fmm-cta:hover,
  .aba-fmm-cta:focus-visible {
    background: #006b77;
    box-shadow: none;
  }

  .aba-fmm-mega {
    top: calc(100% + 12px);
    width: min(var(--aba-fmm-dropdown-width), calc(100vw - 96px));
    transform: translate(-50%, 11px) scale(0.985);
  }

  .aba-fmm-nav-item:hover .aba-fmm-mega,
  .aba-fmm-nav-item:focus-within .aba-fmm-mega,
  .aba-fmm-nav-item.is-open .aba-fmm-mega {
    transform: translate(-50%, 0) scale(1);
  }

  .aba-fmm-mega-inner {
    position: relative;
    gap: 16px;
    padding: 22px;
    background: #ffffff;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    overflow: visible;
  }

  .aba-fmm-mega-inner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 12px;
    height: 28px;
    border-radius: 0 0 999px 999px;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
  }

  .aba-fmm-count-1,
  .aba-fmm-count-2 {
    max-width: 660px;
  }

  .aba-fmm-card {
    min-height: 328px;
    background: var(--aba-fmm-card-cream);
    border: 0;
    border-radius: 9px;
    box-shadow: none;
  }

  .aba-fmm-card:hover,
  .aba-fmm-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(7, 48, 65, 0.16);
  }

  .aba-fmm-card-image {
    height: var(--aba-fmm-card-img-height);
    background: linear-gradient(135deg, rgba(7, 48, 65, 0.32), rgba(223, 111, 82, 0.34));
  }

  .aba-fmm-card-copy {
    gap: 8px;
    padding: 20px 22px 22px;
    background: var(--aba-fmm-card-cream);
  }

  .aba-fmm-card-kicker {
    top: 14px;
    left: 14px;
    min-height: 31px;
    padding: 8px 13px 7px;
    border-radius: 2px;
    background: rgba(7, 48, 65, 0.78);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.055em;
  }

  .aba-fmm-card-copy strong {
    font-size: 21px;
    line-height: 1.12;
    color: #0d2b3a;
  }

  .aba-fmm-card-copy small {
    font-size: 16px;
    line-height: 1.38;
    color: rgba(13, 43, 58, 0.68);
  }

  .aba-fmm-card-copy b {
    display: none;
  }
}


/* Scroll and position controls added in v0.5. */
.aba-fmm-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.admin-bar .aba-fmm-header-fixed {
  top: 32px;
}

.aba-fmm-header-static {
  position: relative;
}

.aba-fmm-top-behavior-hide_scrolled.aba-fmm-is-scrolled .aba-fmm-top-note,
.aba-fmm-top-behavior-hide_down.aba-fmm-scroll-down .aba-fmm-top-note {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

@media (min-width: 1121px) {
  .aba-fmm-is-scrolled .aba-fmm-mainbar {
    background: var(--aba-fmm-scrolled-bg);
    border-bottom-color: color-mix(in srgb, var(--aba-fmm-scrolled-text), transparent 86%);
    box-shadow: 0 12px 38px rgba(7, 48, 65, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .aba-fmm-is-scrolled .aba-fmm-nav-link,
  .aba-fmm-is-scrolled .aba-fmm-socials-desktop .aba-fmm-social {
    color: var(--aba-fmm-scrolled-text);
  }

  .aba-fmm-is-scrolled .aba-fmm-nav-item:hover .aba-fmm-nav-link,
  .aba-fmm-is-scrolled .aba-fmm-nav-item:focus-within .aba-fmm-nav-link,
  .aba-fmm-is-scrolled .aba-fmm-nav-item.is-open .aba-fmm-nav-link {
    color: var(--aba-fmm-green);
  }

  .aba-fmm-is-scrolled .aba-fmm-nav-link::before {
    background: color-mix(in srgb, var(--aba-fmm-green), transparent 88%);
  }

  .aba-fmm-is-scrolled .aba-fmm-logo img {
    filter: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .aba-fmm-header-fixed {
    top: 46px;
  }
}

/* Mobile drawer clean-up: remove the extra second divider line and neutralise theme artefacts. */
.aba-fmm-mobile,
.aba-fmm-mobile > li,
.aba-fmm-mobile-sub,
.aba-fmm-mobile-sub > a {
  list-style: none !important;
}

.aba-fmm-mobile > li::before,
.aba-fmm-mobile > li::after,
.aba-fmm-mobile-parent::before,
.aba-fmm-mobile-parent::after,
.aba-fmm-mobile-parent em::before,
.aba-fmm-mobile-parent em::after,
.aba-fmm-mobile-sub::before,
.aba-fmm-mobile-sub::after {
  content: none !important;
  display: none !important;
}

.aba-fmm-mobile-actions {
  margin-top: 0;
  padding-top: 26px;
  border-top: 0;
}

.aba-fmm-mobile-item:last-child {
  border-bottom: 1px solid var(--aba-fmm-line);
}

.aba-fmm-mobile-sub {
  padding-left: 0;
}

.aba-fmm-mobile-sub a {
  margin-left: 0;
  padding: 13px 0 13px 18px !important;
  border-left: 2px solid color-mix(in srgb, var(--aba-fmm-green), transparent 78%);
}

.aba-fmm-mobile-sub span {
  display: none;
}

.aba-fmm-mobile-overview {
  color: var(--aba-fmm-green) !important;
}

@media (max-width: 520px) {
  .aba-fmm-drawer-panel {
    width: var(--aba-fmm-mobile-width);
    padding: 26px 30px 34px;
  }

  .aba-fmm-mobile-actions {
    padding-top: 24px;
  }
}

@media (min-width: 1121px) {
  .aba-fmm.aba-fmm-header-overlay:not(.aba-fmm-no-overlap) {
    margin-bottom: -87px;
  }
}

/* v0.5: stronger duplicate chevron guards for Divi/theme pseudo-elements. */
.aba-fmm .aba-fmm-chev::before,
.aba-fmm .aba-fmm-chev::after {
  content: none !important;
  display: none !important;
}

.aba-fmm .aba-fmm-nav-link .aba-fmm-chev {
  color: currentColor;
  text-indent: -9999px;
  overflow: hidden;
}

/* -------------------------------------------------------------------------
   v0.6: stable desktop hover bridge, single SVG chevrons, logo mode controls
   ------------------------------------------------------------------------- */
@media (min-width: 1121px) {
  .aba-fmm-nav-item.has-dropdown::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: -34px;
    right: -34px;
    top: 100%;
    height: 22px;
    background: transparent;
    pointer-events: auto;
  }

  .aba-fmm-mega {
    top: 100%;
    padding-top: 12px;
    transform: translate(-50%, 8px) scale(0.985);
  }

  .aba-fmm-nav-item:hover .aba-fmm-mega,
  .aba-fmm-nav-item:focus-within .aba-fmm-mega,
  .aba-fmm-nav-item.is-open .aba-fmm-mega {
    transform: translate(-50%, 0) scale(1);
  }

  .aba-fmm-nav-item.is-hovering .aba-fmm-nav-link {
    color: #ffffff;
  }

  .aba-fmm-is-scrolled .aba-fmm-nav-item.is-hovering .aba-fmm-nav-link {
    color: var(--aba-fmm-green);
  }
}

.aba-fmm .aba-fmm-chev,
.aba-fmm .aba-fmm-mobile-parent em {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0 !important;
  background: transparent !important;
  text-indent: 0 !important;
  overflow: visible !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.aba-fmm .aba-fmm-chev {
  width: 15px;
  height: 15px;
  transform: none !important;
}

.aba-fmm .aba-fmm-chev svg,
.aba-fmm .aba-fmm-mobile-parent em svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.aba-fmm .aba-fmm-nav-item:hover .aba-fmm-chev svg,
.aba-fmm .aba-fmm-nav-item:focus-within .aba-fmm-chev svg,
.aba-fmm .aba-fmm-nav-item.is-open .aba-fmm-chev svg {
  transform: rotate(180deg);
}

.aba-fmm .aba-fmm-mobile-parent em {
  width: 16px;
  height: 16px;
  margin-right: 2px;
  transform: none !important;
}

.aba-fmm .aba-fmm-mobile-parent[aria-expanded="true"] em svg {
  transform: rotate(180deg);
}

.aba-fmm-logo {
  position: relative;
  min-width: var(--aba-fmm-desktop-logo);
}

.aba-fmm-logo img {
  opacity: 1;
  transition: opacity 220ms ease, filter 220ms ease, max-width 260ms ease;
}

.aba-fmm-logo .aba-fmm-logo-white-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: auto;
  height: auto;
  pointer-events: none;
}

@media (min-width: 1121px) {
  .aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1;
    filter: none !important;
  }

  .aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 0;
  }

  .aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 0;
  }

  .aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-white-img,
  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 1;
  }

  .aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-no:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-no .aba-fmm-logo .aba-fmm-logo-colour {
    filter: brightness(0) invert(1);
  }

  .aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1;
    filter: none !important;
  }

  .aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 0;
  }

  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 1;
  }

  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .aba-fmm-logo {
    min-width: 0;
  }

  .aba-fmm-logo .aba-fmm-logo-white-img {
    display: none;
  }
}

@media (min-width: 1121px) {
  .aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo img,
  .aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo img {
    filter: none !important;
  }
}

/* -------------------------------------------------------------------------
   v0.7: full top notice hide, centred desktop grid, logo switching, controls
   ------------------------------------------------------------------------- */
.aba-fmm-top-note {
  min-height: var(--aba-fmm-top-height, 45px);
  height: var(--aba-fmm-top-height, auto);
  padding: 0 !important;
  display: grid;
  place-items: center;
  font-size: var(--aba-fmm-top-font, 15px);
  transition: height 260ms ease, min-height 260ms ease, opacity 220ms ease, visibility 220ms ease, border-color 260ms ease;
}

.aba-fmm-top-note .aba-fmm-inner {
  line-height: 1.2;
}

.aba-fmm-top-behavior-hide_scrolled.aba-fmm-is-scrolled .aba-fmm-top-note,
.aba-fmm-top-behavior-hide_down.aba-fmm-scroll-down .aba-fmm-top-note {
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  border-bottom-color: transparent !important;
}

@media (min-width: 1121px) {
  .aba-fmm .aba-fmm-shell {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    justify-content: initial;
    min-height: var(--aba-fmm-desktop-height, 87px);
    gap: 24px;
  }

  .aba-fmm .aba-fmm-logo {
    justify-self: start;
  }

  .aba-fmm .aba-fmm-desktop {
    justify-self: center;
    flex: initial;
    gap: var(--aba-fmm-desktop-gap, 31px);
  }

  .aba-fmm .aba-fmm-actions {
    justify-self: end;
  }

  .aba-fmm .aba-fmm-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--aba-fmm-desktop-height, 87px);
    padding-block: 0 !important;
    transform: translateY(var(--aba-fmm-desktop-nav-y, 0px));
    color: var(--aba-fmm-desktop-text, #ffffff) !important;
    line-height: 1;
  }

  .aba-fmm .aba-fmm-nav-item:hover .aba-fmm-nav-link,
  .aba-fmm .aba-fmm-nav-item:focus-within .aba-fmm-nav-link,
  .aba-fmm .aba-fmm-nav-item.is-open .aba-fmm-nav-link,
  .aba-fmm .aba-fmm-nav-item.is-hovering .aba-fmm-nav-link {
    color: var(--aba-fmm-desktop-hover-text, #ffffff) !important;
  }

  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-link,
  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-socials-desktop .aba-fmm-social {
    color: var(--aba-fmm-scrolled-text, #0d2b3a) !important;
  }

  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-item:hover .aba-fmm-nav-link,
  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-item:focus-within .aba-fmm-nav-link,
  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-item.is-open .aba-fmm-nav-link,
  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-item.is-hovering .aba-fmm-nav-link {
    color: var(--aba-fmm-scrolled-hover-text, var(--aba-fmm-green)) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social {
    color: var(--aba-fmm-desktop-social-text, #ffffff) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social svg {
    width: var(--aba-fmm-desktop-icon, 22px) !important;
    height: var(--aba-fmm-desktop-icon, 22px) !important;
  }

  .aba-fmm .aba-fmm-chev {
    width: var(--aba-fmm-desktop-chev, 15px) !important;
    height: var(--aba-fmm-desktop-chev, 15px) !important;
    border: 0 !important;
  }

  .aba-fmm .aba-fmm-nav-link::after,
  .aba-fmm .aba-fmm-chev::before,
  .aba-fmm .aba-fmm-chev::after,
  .aba-fmm .aba-fmm-chev svg::before,
  .aba-fmm .aba-fmm-chev svg::after {
    content: none !important;
    display: none !important;
  }

  .aba-fmm.aba-fmm-header-overlay:not(.aba-fmm-no-overlap) {
    margin-bottom: calc(-1 * var(--aba-fmm-desktop-height, 87px));
  }

}

/* Stronger logo state rules. The colour logo must return after the scroll threshold. */
@media (min-width: 1121px) {
  .aba-fmm .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm .aba-fmm-logo .aba-fmm-logo-white-img {
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1 !important;
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-white-img,
  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 0 !important;
  }

  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 0 !important;
  }

  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-white-img,
  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 1 !important;
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-no:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-no .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }

  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-no.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour {
    filter: brightness(0) invert(1) !important;
  }
}

@media (max-width: 1120px) {
  .aba-fmm-toggle {
    width: var(--aba-fmm-mobile-toggle, 56px) !important;
    height: var(--aba-fmm-mobile-toggle, 56px) !important;
  }

  .aba-fmm-toggle span {
    width: var(--aba-fmm-mobile-toggle-icon, 28px) !important;
  }

  .aba-fmm .aba-fmm-mobile-parent em {
    width: var(--aba-fmm-mobile-chev, 16px) !important;
    height: var(--aba-fmm-mobile-chev, 16px) !important;
  }

  .aba-fmm .aba-fmm-mobile-parent::before,
  .aba-fmm .aba-fmm-mobile-parent::after,
  .aba-fmm .aba-fmm-mobile-parent em::before,
  .aba-fmm .aba-fmm-mobile-parent em::after {
    content: none !important;
    display: none !important;
  }

  .aba-fmm-socials-mobile .aba-fmm-social svg {
    width: var(--aba-fmm-mobile-social-icon, 18px) !important;
    height: var(--aba-fmm-mobile-social-icon, 18px) !important;
  }

  .aba-fmm-close {
    width: var(--aba-fmm-mobile-close, 42px) !important;
    height: var(--aba-fmm-mobile-close, 42px) !important;
  }
}

/* -------------------------------------------------------------------------
   v0.8: original desktop reset, compact dropdown controls, more menu room
   ------------------------------------------------------------------------- */
@media (min-width: 1121px) {
  .aba-fmm .aba-fmm-inner {
    width: min(var(--aba-fmm-desktop-shell, 1220px), calc(100vw - 64px));
  }

  .aba-fmm .aba-fmm-shell {
    grid-template-columns: minmax(var(--aba-fmm-desktop-side, 160px), 1fr) minmax(0, auto) minmax(var(--aba-fmm-desktop-side, 160px), 1fr) !important;
    min-height: var(--aba-fmm-desktop-height, 80px) !important;
    gap: clamp(16px, 2.2vw, 42px) !important;
  }

  .aba-fmm.aba-fmm-layout-more_menu_room .aba-fmm-shell {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .aba-fmm.aba-fmm-layout-more_menu_room .aba-fmm-desktop {
    justify-content: center;
    min-width: 0;
  }

  .aba-fmm .aba-fmm-logo {
    min-width: min(var(--aba-fmm-desktop-logo, 92px), var(--aba-fmm-desktop-side, 160px));
    height: var(--aba-fmm-desktop-height, 80px);
    align-items: center;
  }

  .aba-fmm .aba-fmm-logo img {
    max-width: var(--aba-fmm-desktop-logo, 92px) !important;
    max-height: calc(var(--aba-fmm-desktop-height, 80px) - 22px) !important;
  }

  .aba-fmm .aba-fmm-desktop {
    min-width: 0;
    max-width: 100%;
    gap: var(--aba-fmm-desktop-gap, 22px) !important;
    flex-wrap: nowrap;
  }

  .aba-fmm .aba-fmm-nav-item {
    min-width: 0;
  }

  .aba-fmm .aba-fmm-nav-link {
    height: var(--aba-fmm-desktop-height, 80px) !important;
    min-height: var(--aba-fmm-desktop-height, 80px) !important;
    padding: 0 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap;
    font-size: var(--aba-fmm-desktop-font, 15px) !important;
    font-weight: var(--aba-fmm-desktop-weight, 800) !important;
    line-height: var(--aba-fmm-desktop-line-height, 1) !important;
    position: relative;
    top: var(--aba-fmm-desktop-nav-y, 0px);
    transform: none !important;
  }

  .aba-fmm .aba-fmm-nav-link::before {
    left: 0 !important;
    right: 0 !important;
    height: 46px !important;
    background: var(--aba-fmm-desktop-hover-bg, rgba(255,255,255,0.11)) !important;
    border-radius: 7px !important;
  }

  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-nav-link::before {
    background: var(--aba-fmm-scrolled-hover-bg, rgba(11,114,128,0.10)) !important;
  }

  .aba-fmm .aba-fmm-actions {
    gap: var(--aba-fmm-desktop-actions-gap, 18px) !important;
  }

  .aba-fmm .aba-fmm-cta {
    background: var(--aba-fmm-desktop-cta-bg, #007f8f) !important;
    color: var(--aba-fmm-desktop-cta-text, #ffffff) !important;
  }

  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-cta {
    background: var(--aba-fmm-scrolled-cta-bg, #007f8f) !important;
    color: var(--aba-fmm-scrolled-cta-text, #ffffff) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social svg {
    width: var(--aba-fmm-desktop-icon, 19px) !important;
    height: var(--aba-fmm-desktop-icon, 19px) !important;
  }

  .aba-fmm .aba-fmm-chev {
    width: var(--aba-fmm-desktop-chev, 12px) !important;
    height: var(--aba-fmm-desktop-chev, 12px) !important;
  }

  .aba-fmm.aba-fmm-header-overlay:not(.aba-fmm-no-overlap) {
    margin-bottom: calc(-1 * var(--aba-fmm-desktop-height, 80px)) !important;
  }

  .aba-fmm.aba-fmm-top-behavior-hide_scrolled.aba-fmm-is-scrolled .aba-fmm-top-note,
  .aba-fmm.aba-fmm-top-behavior-hide_down.aba-fmm-scroll-down .aba-fmm-top-note {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-mega {
    top: 100% !important;
    padding-top: 5px !important;
    width: min(var(--aba-fmm-dropdown-width, 770px), calc(100vw - 80px)) !important;
    transform: translate(-50%, 8px) scale(0.992) !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-nav-item:hover .aba-fmm-mega,
  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-nav-item:focus-within .aba-fmm-mega,
  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-nav-item.is-open .aba-fmm-mega {
    transform: translate(-50%, 0) scale(1) !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-mega-inner {
    gap: var(--aba-fmm-dropdown-gap, 12px) !important;
    padding: var(--aba-fmm-dropdown-padding, 16px) !important;
    border-radius: 17px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.22) !important;
  }

  .aba-fmm.aba-fmm-dropdown-tail-no .aba-fmm-mega-inner::after {
    display: none !important;
    content: none !important;
  }

  .aba-fmm.aba-fmm-dropdown-tail-yes .aba-fmm-mega-inner::after {
    width: 10px !important;
    height: 24px !important;
    bottom: -23px !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card {
    min-height: var(--aba-fmm-dropdown-card-min, 264px) !important;
    border-radius: var(--aba-fmm-dropdown-card-radius, 8px) !important;
    background: #fff8ed !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card-image {
    height: var(--aba-fmm-card-img-height, 145px) !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card-copy {
    padding: var(--aba-fmm-dropdown-copy-padding, 16px) !important;
    gap: 6px !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card-kicker {
    top: 12px !important;
    left: 12px !important;
    min-height: 27px !important;
    padding: 7px 10px 6px !important;
    font-size: var(--aba-fmm-dropdown-kicker, 11px) !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card-copy strong {
    font-size: var(--aba-fmm-dropdown-title, 16px) !important;
    line-height: 1.15 !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-original_compact .aba-fmm-card-copy small {
    font-size: var(--aba-fmm-dropdown-description, 14px) !important;
    line-height: 1.35 !important;
  }

  .aba-fmm.aba-fmm-dropdown-style-large_cards .aba-fmm-card {
    min-height: 328px;
  }
}

@media (max-width: 1120px) {
  .aba-fmm .aba-fmm-top-note {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------
   v0.9: CTA/mobile social sizing, stricter logo mode, cleaner alignment
   ------------------------------------------------------------------------- */
.aba-fmm .aba-fmm-cta {
  font-size: var(--aba-fmm-desktop-cta-font, 15px) !important;
  line-height: 1.05 !important;
  text-align: center;
}

.aba-fmm .aba-fmm-mobile-cta {
  font-size: var(--aba-fmm-mobile-cta-font, 15px) !important;
  line-height: 1.05 !important;
  text-align: center;
}

.aba-fmm .aba-fmm-socials-mobile {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  row-gap: 14px;
}

.aba-fmm .aba-fmm-socials-mobile .aba-fmm-social {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  line-height: 1 !important;
  min-height: var(--aba-fmm-mobile-social-icon, 18px);
}

.aba-fmm .aba-fmm-socials-mobile .aba-fmm-social svg {
  flex: 0 0 var(--aba-fmm-mobile-social-icon, 18px) !important;
  width: var(--aba-fmm-mobile-social-icon, 18px) !important;
  height: var(--aba-fmm-mobile-social-icon, 18px) !important;
  display: block !important;
  position: relative;
  top: 0;
}

.aba-fmm .aba-fmm-socials-mobile .aba-fmm-social span {
  display: inline-block !important;
  font-size: var(--aba-fmm-mobile-social-text, 19px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  transform: translateY(1px);
}

@media (min-width: 1121px) {
  /* Hard override: when Always colour logo is chosen, never use the white layer or white filter. */
  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-colour {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-white-img {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo img {
    filter: none !important;
  }

  /* Keep actions vertically centred even when CTA text wraps to two lines. */
  .aba-fmm .aba-fmm-actions,
  .aba-fmm .aba-fmm-socials-desktop,
  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social,
  .aba-fmm .aba-fmm-cta {
    align-items: center !important;
  }

  .aba-fmm .aba-fmm-cta {
    min-height: 43px !important;
    max-width: 150px;
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   v0.9.1: Desktop social icon vertical alignment
   -------------------------------------------------------------------------- */
@media (min-width: 981px) {
  .aba-fmm .aba-fmm-actions {
    align-items: center !important;
  }

  .aba-fmm .aba-fmm-socials-desktop {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: var(--aba-fmm-desktop-actions-gap, 18px) !important;
    line-height: 1 !important;
    height: var(--aba-fmm-desktop-height, 56px) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social,
  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social:hover,
  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social:focus-visible {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(var(--aba-fmm-desktop-icon, 19px) + 10px) !important;
    height: calc(var(--aba-fmm-desktop-icon, 19px) + 10px) !important;
    min-width: calc(var(--aba-fmm-desktop-icon, 19px) + 10px) !important;
    min-height: calc(var(--aba-fmm-desktop-icon, 19px) + 10px) !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    transform: none !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social svg {
    display: block !important;
    width: var(--aba-fmm-desktop-icon, 19px) !important;
    height: var(--aba-fmm-desktop-icon, 19px) !important;
    min-width: var(--aba-fmm-desktop-icon, 19px) !important;
    min-height: var(--aba-fmm-desktop-icon, 19px) !important;
    margin: 0 !important;
    line-height: 1 !important;
    overflow: visible;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-facebook svg {
    transform: translateY(0) !important;
  }
}


/* --------------------------------------------------------------------------
   v0.9.2: Pixel-lock desktop logo and social icon vertical alignment
   -------------------------------------------------------------------------- */
@media (min-width: 981px) {
  .aba-fmm .aba-fmm-logo {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    align-self: center !important;
    height: var(--aba-fmm-desktop-height, 56px) !important;
    min-height: var(--aba-fmm-desktop-height, 56px) !important;
    width: min(var(--aba-fmm-desktop-logo, 92px), var(--aba-fmm-desktop-side, 160px)) !important;
    min-width: min(var(--aba-fmm-desktop-logo, 92px), var(--aba-fmm-desktop-side, 160px)) !important;
    flex: 0 0 min(var(--aba-fmm-desktop-logo, 92px), var(--aba-fmm-desktop-side, 160px)) !important;
    line-height: 0 !important;
    overflow: visible !important;
  }

  .aba-fmm .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm .aba-fmm-logo .aba-fmm-logo-white-img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    width: auto !important;
    max-width: var(--aba-fmm-desktop-logo, 92px) !important;
    max-height: calc(var(--aba-fmm-desktop-height, 56px) - 10px) !important;
    object-fit: contain !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
    margin: 0 !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-colour .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-white-img,
  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .aba-fmm.aba-fmm-logo-mode-white.aba-fmm-has-white-logo-yes .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-has-white-logo-yes:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  .aba-fmm.aba-fmm-logo-mode-auto.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-white-img {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .aba-fmm .aba-fmm-actions,
  .aba-fmm .aba-fmm-socials-desktop {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
  }

  .aba-fmm .aba-fmm-socials-desktop {
    height: var(--aba-fmm-desktop-height, 56px) !important;
    min-height: var(--aba-fmm-desktop-height, 56px) !important;
    gap: var(--aba-fmm-desktop-actions-gap, 18px) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social,
  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social:hover,
  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social:focus-visible {
    position: relative !important;
    display: inline-grid !important;
    place-items: center !important;
    align-self: center !important;
    width: calc(var(--aba-fmm-desktop-icon, 19px) + 14px) !important;
    min-width: calc(var(--aba-fmm-desktop-icon, 19px) + 14px) !important;
    height: var(--aba-fmm-desktop-height, 56px) !important;
    min-height: var(--aba-fmm-desktop-height, 56px) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    line-height: 0 !important;
    vertical-align: middle !important;
    transform: none !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social svg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    width: var(--aba-fmm-desktop-icon, 19px) !important;
    height: var(--aba-fmm-desktop-icon, 19px) !important;
    min-width: var(--aba-fmm-desktop-icon, 19px) !important;
    min-height: var(--aba-fmm-desktop-icon, 19px) !important;
    margin: 0 !important;
    overflow: visible !important;
    transform-origin: center center !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-instagram svg {
    transform: translate(-50%, calc(-50% + 1px)) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-facebook svg {
    transform: translate(-50%, calc(-50% - 0.5px)) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-whatsapp svg {
    transform: translate(-50%, calc(-50% + 0.5px)) !important;
  }
}


/* --------------------------------------------------------------------------
   v0.9.3: Admin-controlled logo and social optical alignment
   -------------------------------------------------------------------------- */
@media (min-width: 981px) {
  .aba-fmm:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm:not(.aba-fmm-is-scrolled) .aba-fmm-logo .aba-fmm-logo-white-img {
    transform: translate(-50%, calc(-50% + var(--aba-fmm-logo-y-before, 0px))) !important;
  }

  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-colour,
  .aba-fmm.aba-fmm-is-scrolled .aba-fmm-logo .aba-fmm-logo-white-img {
    transform: translate(-50%, calc(-50% + var(--aba-fmm-logo-y-scrolled, 0px))) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-instagram svg {
    transform: translate(-50%, calc(-50% + var(--aba-fmm-desktop-social-y, 0px) + var(--aba-fmm-desktop-social-instagram-y, 0px))) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-facebook svg {
    transform: translate(-50%, calc(-50% + var(--aba-fmm-desktop-social-y, 0px) + var(--aba-fmm-desktop-social-facebook-y, 0px))) !important;
  }

  .aba-fmm .aba-fmm-socials-desktop .aba-fmm-social-whatsapp svg {
    transform: translate(-50%, calc(-50% + var(--aba-fmm-desktop-social-y, 0px) + var(--aba-fmm-desktop-social-whatsapp-y, 0px))) !important;
  }
}
