.site-header__inner {
  position: relative;
}

.site-dynamic-menu {
  align-items: center;
}

.site-dynamic-menu a,
.site-dynamic-menu button {
  outline-offset: 4px;
}

.site-menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-menu-primary {
  padding-right: 4px;
}

.site-menu-toggle {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-menu-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.site-menu-mega:hover .site-mega-panel,
.site-menu-mega:focus-within .site-mega-panel,
.site-menu-mega.is-open .site-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}

.site-mega-panel {
  position: fixed;
  top: 79px;
  left: 50%;
  right: auto;
  z-index: 300;

  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;

  width: min(1180px, calc(100vw - 32px));
  height: 350px;
  overflow-y: auto;

  padding: 24px;
  border: 1px solid rgba(148, 163, 184, .32);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);

  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  pointer-events: none;

  transition: opacity .18s ease, visibility .18s ease;
}

.site-mega-heading {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-mega-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #0f172a;
  text-decoration: none;
}

.site-mega-link:hover,
.site-mega-link:focus {
  background: #eef4ff;
  color: #1d4ed8;
}

.site-mega-link span {
  display: block;
  font-weight: 900;
}

.site-mega-link small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.site-menu-item {

    height: 85px;
}

@media (max-width: 760px) {
  .site-dynamic-menu {
    align-items: stretch;
    width: 100%;
  }

  .site-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .site-mega-panel {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    pointer-events: auto;
    transition: max-height .2s ease, padding .2s ease;
  }

  .site-menu-mega:hover .site-mega-panel,
  .site-menu-mega:focus-within .site-mega-panel {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-menu-mega.is-open .site-mega-panel {
    max-height: 900px;
    padding-top: 10px;
    padding-bottom: 12px;
  }
}
