:root {
  --mo-forest: #173f32;
  --mo-forest-hover: #3f6944;
  --mo-matcha: #8ebb72;
  --mo-text: #24312b;
  --mo-muted: #66756c;
  --mo-cream: #f6f3e8;
  --mo-light-cream: #fbfaf5;
  --mo-white: #ffffff;
  --mo-border: #dDE5DC;
  --mo-hover-bg: rgba(255,255,255,.085);
  --mo-trust-bar-h: 38px;
  --mo-header-h: 84px;
  --mo-total-h: 122px;
}

html {
  scroll-padding-top: var(--mo-total-h);
}

body.mo-menu-open,
body.mo-mobile-menu-open,
body.mo-search-open {
  overflow: hidden;
}

.mo-site-chrome,
.mo-site-chrome *,
.mo-site-chrome *::before,
.mo-site-chrome *::after {
  box-sizing: border-box;
}

.mo-site-chrome {
  position: sticky;
  top: 0;
  z-index: 9998;
  width: 100%;
  font-family: var(--wp--preset--font-family--manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.mo-b2b-trust-bar {
  min-height: var(--mo-trust-bar-h);
  width: 100%;
  background: var(--mo-cream);
  border-bottom: 1px solid var(--mo-border);
  color: var(--mo-forest);
}

.mo-b2b-trust-bar__inner {
  display: flex;
  min-height: var(--mo-trust-bar-h);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 7px 32px;
}

.mo-b2b-trust-bar__message {
  min-width: 0;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mo-b2b-trust-bar__mobile {
  display: none;
}

.mo-b2b-trust-bar__cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: var(--mo-forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.mo-b2b-trust-bar__cta svg {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.mo-b2b-trust-bar__cta:hover svg {
  transform: translateX(3px);
}

.mo-header {
  position: relative;
  min-height: var(--mo-header-h);
  background: var(--mo-forest);
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.mo-header__inner {
  display: grid;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(100%, 1600px);
  min-height: var(--mo-header-h);
  margin: 0 auto;
  padding: 0 32px;
}

.mo-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--mo-white);
  text-decoration: none;
  white-space: nowrap;
}

.mo-brand__mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--mo-matcha);
}

.mo-brand__mark svg {
  width: 100%;
  height: 100%;
}

.mo-brand__text {
  overflow: visible;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
  text-overflow: clip;
  white-space: nowrap;
}

.mo-nav {
  min-width: 0;
}

.mo-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mo-nav__item {
  position: relative;
  flex: 0 0 auto;
}

.mo-nav__item-shell {
  display: flex;
  align-items: center;
}

.mo-nav__toplink {
  position: relative;
  display: inline-flex;
  min-height: var(--mo-header-h);
  align-items: center;
  color: rgba(255,255,255,.91);
  font-size: 11.8px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mo-nav__toplink::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--mo-matcha);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.mo-nav__item:hover .mo-nav__toplink,
.mo-nav__item:focus-within .mo-nav__toplink,
.mo-nav__item.is-open .mo-nav__toplink,
.mo-nav__item.is-active .mo-nav__toplink {
  color: var(--mo-white);
}

.mo-nav__item:hover .mo-nav__toplink::after,
.mo-nav__item:focus-within .mo-nav__toplink::after,
.mo-nav__item.is-open .mo-nav__toplink::after,
.mo-nav__item.is-active .mo-nav__toplink::after {
  transform: scaleX(1);
}

.mo-nav__toggle {
  display: inline-flex;
  width: 24px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: -3px;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.86);
  cursor: pointer;
}

.mo-nav__toggle svg {
  width: 10px;
  height: 7px;
  transition: transform .2s ease;
}

.mo-nav__item.is-open .mo-nav__toggle svg {
  transform: rotate(180deg);
}

.mo-nav__toplink:focus-visible,
.mo-nav__toggle:focus-visible,
.mo-header__cta:focus-visible,
.mo-utility-link:focus-visible,
.mo-search-close:focus-visible,
.mo-search-input:focus-visible,
.mo-search-submit:focus-visible,
.mo-b2b-trust-bar__cta:focus-visible,
.mo-brand:focus-visible,
.mo-link-column a:focus-visible,
.mo-promo:focus-visible,
.mo-mega-panel__compact-card a:focus-visible {
  outline: 2px solid var(--mo-matcha);
  outline-offset: 3px;
}

.mo-header__utilities {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  white-space: nowrap;
}

.mo-utility-link {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 44px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--mo-cream);
  cursor: pointer;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.mo-utility-link:hover,
.mo-utility-link:focus-visible {
  color: #9dbf72;
  transform: translateY(-1px);
}

.mo-utility-link svg {
  width: 22px;
  height: 22px;
}

.mo-cart-count {
  position: absolute;
  top: 2px;
  right: -7px;
  display: inline-flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: #9dbf72;
  border: 2px solid var(--mo-forest);
  border-radius: 999px;
  color: var(--mo-forest);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.mo-cart-count[hidden] {
  display: none !important;
}

.mo-header__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  background: var(--mo-light-cream);
  border: 1px solid var(--mo-light-cream);
  border-radius: 5px;
  color: var(--mo-forest);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mo-header__cta:hover {
  background: var(--mo-matcha);
  border-color: var(--mo-matcha);
  color: var(--mo-forest);
  transform: translateY(-1px);
}

.mo-mobile-toggle {
  display: none;
}

.mo-search-panel {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(96px, 16vh, 170px) 24px 24px;
}

.mo-search-panel[hidden] {
  display: none !important;
}

.mo-search-panel__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4,18,13,.72);
  border: 0;
  backdrop-filter: blur(4px);
}

.mo-search-panel__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 26px 28px 30px;
  background: var(--mo-light-cream);
  border: 1px solid var(--mo-border);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(4,18,13,.35);
}

.mo-search-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--mo-forest);
  font-size: 12px;
  letter-spacing: .09em;
}

.mo-search-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--mo-border);
  border-radius: 5px;
  color: var(--mo-forest);
  cursor: pointer;
}

.mo-search-close svg,
.mo-search-submit svg {
  width: 22px;
  height: 22px;
}

.mo-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  min-height: 56px;
  background: var(--mo-white);
  border: 1px solid #bcc9bf;
  border-radius: 5px;
}

.mo-search-input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  border: 0;
  color: var(--mo-text);
  font: inherit;
  font-size: 16px;
}

.mo-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--mo-forest);
  border: 0;
  border-radius: 0 4px 4px 0;
  color: var(--mo-white);
  cursor: pointer;
}

.mo-mega-layer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.mo-mega-panel {
  width: 100%;
  background: var(--mo-forest);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 48px rgba(7,25,19,.22);
  color: var(--mo-white);
}

.mo-mega-panel[hidden] {
  display: none !important;
}

.mo-mega-panel__inner {
  display: grid;
  width: min(100%, 1600px);
  min-height: 438px;
  margin: 0 auto;
}

.mo-mega-panel--bulk .mo-mega-panel__inner {
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
}

.mo-mega-panel--single-visual .mo-mega-panel__inner {
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}

.mo-mega-panel--text .mo-mega-panel__inner {
  display: block;
  min-height: 322px;
}

.mo-mega-panel__links {
  display: grid;
  align-content: start;
  gap: 42px;
  padding: 48px 42px 54px;
}

.mo-mega-panel__links--bulk,
.mo-mega-panel__links--text {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mo-mega-panel__links--single-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mo-mega-panel--text .mo-mega-panel__links {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.mo-link-column h2 {
  margin: 0 0 16px;
  color: var(--mo-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mo-link-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mo-link-column li + li {
  margin-top: 2px;
}

.mo-link-column a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 -12px;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  color: #e4ebe5;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.mo-link-column a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.mo-link-column a:hover {
  background: var(--mo-hover-bg);
  border-left-color: var(--mo-matcha);
  color: var(--mo-white);
  transform: translateX(3px);
}

.mo-link-column a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.mo-mega-panel__promos {
  display: grid;
  min-width: 0;
  min-height: 438px;
}

.mo-mega-panel__promos--bulk {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mo-mega-panel__promos--single-visual {
  grid-template-columns: 1fr;
}

.mo-promo {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 438px;
  overflow: hidden;
  background: #2a5748;
  color: var(--mo-white);
  text-decoration: none;
  isolation: isolate;
}

.mo-promo + .mo-promo {
  border-left: 1px solid rgba(255,255,255,.18);
}

.mo-promo__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mo-promo-position, center center);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}

.mo-promo__placeholder {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 74% 22%, rgba(142,187,114,.32), transparent 32%),
    linear-gradient(145deg, #f6f3e8, #dce8da 52%, #b7cfb1);
  color: rgba(23,63,50,.32);
}

.mo-promo__placeholder svg {
  width: 92px;
  height: 92px;
}

.mo-promo__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(8,26,20,.02) 20%, rgba(8,26,20,.22) 52%, rgba(8,26,20,.88) 100%);
}

.mo-promo.is-placeholder .mo-promo__shade {
  background: linear-gradient(180deg, rgba(23,63,50,.02) 10%, rgba(23,63,50,.28) 58%, rgba(23,63,50,.9) 100%);
}

.mo-promo__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 30px 30px;
}

.mo-promo__content strong {
  color: var(--mo-white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.25;
}

.mo-promo__text {
  max-width: 330px;
  margin-top: 8px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.5;
}

.mo-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--mo-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1.2;
}

.mo-promo__cta svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.mo-promo:hover .mo-promo__image {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.mo-promo:hover .mo-promo__cta svg {
  transform: translateX(4px);
}

.mo-mega-panel--compact {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 4;
  width: 320px;
  padding-top: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #f6f3e8;
}

.mo-mega-panel__compact-card {
  width: 320px;
  padding: 10px;
  background: #214b3e;
  border: 1px solid #315c50;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(7,25,19,.28);
}

.mo-mega-panel__compact-card a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 5px;
  color: #f6f3e8;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.mo-mega-panel__compact-card a:hover {
  background: #2b5a4b;
  color: #ffffff;
}

.mo-mega-panel__compact-card svg {
  width: 16px;
  height: 16px;
  color: #9dbf72;
  transition: color .18s ease, transform .18s ease;
}

.mo-mega-panel__compact-card a:hover svg,
.mo-mega-panel__compact-card a:focus-visible svg {
  color: #9dbf72;
  transform: translateX(3px);
}

.mo-mega-backdrop {
  position: fixed;
  inset: var(--mo-total-h) 0 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--mo-total-h));
  padding: 0;
  background: rgba(4,18,13,.42);
  border: 0;
  cursor: default;
  backdrop-filter: blur(1px);
}

.mo-mega-backdrop[hidden] {
  display: none !important;
}

.mo-mobile-drawer {
  display: none;
}

@media (max-width: 1450px) {
  .mo-header__inner {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) auto;
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .mo-nav__list {
    gap: 12px;
  }

  .mo-nav__toplink {
    font-size: 11.2px;
  }

  .mo-brand__text {
    font-size: 19px;
  }

  .mo-header__cta {
    padding-right: 17px;
    padding-left: 17px;
    font-size: 11px;
  }

  .mo-header__utilities {
    gap: 13px;
  }

  .mo-mega-panel__inner,
  .mo-mega-panel__promos,
  .mo-promo {
    min-height: 408px;
  }

  .mo-mega-panel__links {
    gap: 28px;
    padding: 42px 30px 46px;
  }

  .mo-link-column a {
    font-size: 13.3px;
  }

  .mo-promo__content {
    padding: 28px 24px 25px;
  }
}

@media (max-width: 1180px) {
  :root {
    --mo-header-h: 72px;
    --mo-total-h: 110px;
  }

  .mo-header__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .mo-mobile-toggle {
    order: 1;
  }

  .mo-brand {
    order: 2;
    margin-right: auto;
  }

  .mo-header__utilities {
    order: 3;
    gap: 13px;
  }

  .mo-brand__text {
    font-size: 20px;
  }

  .mo-nav,
  .mo-header__utilities .mo-header__cta,
  .mo-mega-layer,
  .mo-mega-backdrop {
    display: none !important;
  }

  .mo-mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 5px;
    color: var(--mo-white);
    cursor: pointer;
  }

  .mo-mobile-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
  }

  .mo-mobile-toggle:focus-visible,
  .mo-utility-link:focus-visible,
  .mo-mobile-close:focus-visible,
  .mo-mobile-accordion button:focus-visible,
  .mo-mobile-drawer a:focus-visible {
    outline: 2px solid var(--mo-matcha);
    outline-offset: 3px;
  }

  .mo-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    grid-template-columns: minmax(0, 440px) 1fr;
    background: transparent;
  }

  .mo-mobile-drawer[hidden] {
    display: none !important;
  }

  .mo-mobile-drawer__panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(100vw, 440px);
    height: 100dvh;
    overflow: hidden;
    background: var(--mo-light-cream);
    box-shadow: 18px 0 45px rgba(7,25,19,.28);
  }

  .mo-mobile-drawer__backdrop {
    width: 100%;
    height: 100dvh;
    padding: 0;
    background: rgba(4,18,13,.58);
    border: 0;
  }

  .mo-mobile-drawer__header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: var(--mo-forest);
  }

  .mo-brand--mobile {
    max-width: calc(100% - 58px);
  }

  .mo-mobile-close {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 5px;
    color: var(--mo-white);
    cursor: pointer;
  }

  .mo-mobile-close svg {
    width: 23px;
    height: 23px;
  }

  .mo-mobile-drawer__body {
    overflow-y: auto;
    padding: 10px 20px 28px;
    overscroll-behavior: contain;
  }

  .mo-mobile-home,
  .mo-mobile-accordion__top {
    min-height: 58px;
    border-bottom: 1px solid var(--mo-border);
  }

  .mo-mobile-home {
    display: flex;
    align-items: center;
    color: var(--mo-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .055em;
    text-decoration: none;
  }

  .mo-mobile-accordion__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  .mo-mobile-accordion__top > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    color: var(--mo-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .055em;
    text-decoration: none;
  }

  .mo-mobile-accordion__top button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--mo-forest);
    cursor: pointer;
  }

  .mo-mobile-accordion__top button svg {
    width: 20px;
    height: 20px;
    transition: transform .2s ease;
  }

  .mo-mobile-accordion.is-open .mo-mobile-accordion__top button svg {
    transform: rotate(45deg);
  }

  .mo-mobile-accordion__panel {
    padding: 8px 0 12px 14px;
    border-bottom: 1px solid var(--mo-border);
  }

  .mo-mobile-accordion__panel[hidden] {
    display: none !important;
  }

  .mo-mobile-accordion__panel a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 7px 10px;
    border-left: 2px solid transparent;
    color: var(--mo-muted);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
  }

  .mo-mobile-accordion__panel a:hover {
    background: #eef3eb;
    border-left-color: var(--mo-matcha);
    color: var(--mo-forest);
  }

  .mo-mobile-drawer__footer {
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    background: var(--mo-white);
    border-top: 1px solid var(--mo-border);
  }

  .mo-mobile-drawer__footer a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    background: var(--mo-forest);
    border-radius: 5px;
    color: var(--mo-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  :root {
    --mo-trust-bar-h: 52px;
    --mo-total-h: 124px;
  }

  .mo-b2b-trust-bar__inner {
    gap: 10px;
    padding: 7px 12px;
  }

  .mo-b2b-trust-bar__message {
    font-size: 9.5px;
    letter-spacing: .045em;
  }

  .mo-b2b-trust-bar__desktop {
    display: none;
  }

  .mo-b2b-trust-bar__mobile {
    display: inline;
  }

  .mo-b2b-trust-bar__cta {
    font-size: 9.5px;
    letter-spacing: .04em;
  }

  .mo-b2b-trust-bar__cta svg {
    display: none;
  }

  .mo-header__inner {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .mo-brand {
    gap: 6px;
    max-width: none;
    margin-right: auto;
  }

  .mo-brand__mark {
    width: 30px;
    height: 30px;
  }

  .mo-brand__text {
    font-size: 15px;
  }

  .mo-header__utilities {
    gap: 6px;
  }

  .mo-utility-link {
    width: 32px;
    height: 40px;
    flex-basis: 32px;
  }

  .mo-utility-link svg {
    width: 21px;
    height: 21px;
  }

  .mo-mobile-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .mo-search-panel {
    padding: 82px 14px 14px;
  }

  .mo-search-panel__dialog {
    padding: 20px 18px 22px;
  }

  .mo-mobile-drawer {
    grid-template-columns: 1fr;
  }

  .mo-mobile-drawer__panel {
    width: 100vw;
  }

  .mo-mobile-drawer__backdrop {
    display: none;
  }
}

@media (max-width: 380px) {
  .mo-header__inner {
    padding-right: 8px;
    padding-left: 8px;
  }

  .mo-brand__mark {
    display: none;
  }

  .mo-brand__text {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mo-site-chrome *,
  .mo-site-chrome *::before,
  .mo-site-chrome *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* v1.0.5: dynamic link states, category-aware menus and mobile refinements. */
.mo-nav__toplink--label {
  cursor: default;
}

.mo-link-column a.is-current,
.mo-mega-panel__compact-card a.is-current {
  background: var(--mo-hover-bg);
  border-left-color: var(--mo-matcha);
  color: var(--mo-white);
}

.mo-mobile-accordion.is-active > .mo-mobile-accordion__top {
  border-bottom-color: #cbd8cc;
}

.mo-mobile-accordion__top > .mo-mobile-accordion__label {
  display: flex;
  min-height: 58px;
  align-items: center;
  color: var(--mo-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
}

.mo-mobile-accordion__panel a.is-current {
  background: #e7efe4;
  border-left-color: var(--mo-matcha);
  color: var(--mo-forest);
  font-weight: 700;
}

@media (min-width: 1181px) {
  .mo-mega-panel__links {
    grid-template-columns: repeat(var(--mo-col-count, 3), minmax(0, 1fr));
  }

  .mo-mega-panel.has-no-promos .mo-mega-panel__inner {
    display: block;
    min-height: 310px;
  }

  .mo-mega-panel.has-no-promos .mo-mega-panel__links {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding-right: 32px;
    padding-left: 32px;
  }

  .mo-mega-panel__promos--count-1 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .mo-mobile-drawer__body {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mo-mobile-accordion__panel {
    padding-left: 8px;
  }

  .mo-mobile-accordion__panel a {
    min-height: 48px;
    padding-right: 8px;
    padding-left: 12px;
  }
}


/* Article 673 featured image aspect ratio fix */
.single-post.postid-673 .wp-block-post-featured-image img {
    aspect-ratio: 1672 / 941 !important;
    height: auto !important;
    object-fit: contain !important;
}

.single-post.postid-673 .mo-blog-context-image {
    margin-block: clamp(1.75rem, 4vw, 2.75rem);
}

.single-post.postid-673 .mo-blog-context-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* Article 676 featured image and article media */
.single-post.postid-676 .wp-block-post-featured-image img {
    aspect-ratio: 1672 / 941 !important;
    height: auto !important;
    object-fit: contain !important;
}

.single-post.postid-676 .mo-blog-context-image {
    margin-block: clamp(1.75rem, 4vw, 2.75rem);
}

.single-post.postid-676 .mo-blog-context-image img {
    display: block;
    width: 100%;
    height: auto;
}
