.hamburger {
  background-color: transparent;
  border: none;
  min-width: calc(36px + 1rem);
  min-height: 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  padding: 0.5em;
}
.hamburger-bar {
  height: 2px;
  border-radius: 0.5rem;
  width: 100%;
  transition: transform 0.2s ease;
}
.hamburger.focus .one,
.hamburger.focus .three {
  transition-delay: 0.1s;
}
.hamburger.focus .one {
  transform: rotate(45deg) translateX(6px) translateY(5px);
}
.hamburger.focus .two {
  transform: scaleX(0);
}
.hamburger.focus .three {
  transform: rotate(-45deg) translateX(6px) translateY(-5px);
}

.hamburger.focus + .nav-list-container {
  top: calc(100% + 1rem);
  background: var(--wp--preset--color--window-dark);
  padding: 0;
  border: solid 2px var(--wp--preset--color--links);
  outline: solid 1px var(--wp--preset--color--links);
  outline-offset: -0.5rem;
}
