.vr-top-banner {
  background: var(--color-green);
  color: #0a0a0a;
  text-align: center;
  padding: 8px;
}

.vr-top-banner__text {
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
}

.vr-header {
  background: var(--color-panel);
  border-bottom: 1px solid #333;
}

.vr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
}

.vr-logo__img {
  max-height: 56px;
}

.vr-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.vr-nav__list a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: var(--color-gray);
  transition: color 0.15s ease;
}

.vr-nav__list a:hover,
.vr-nav__list .current-menu-item > a,
.vr-nav__list .current_page_item > a {
  color: var(--color-green);
}

.vr-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.vr-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-green);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.vr-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.vr-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.vr-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .vr-header__inner {
    padding: 16px 24px;
  }
  .vr-burger {
    display: flex;
  }
  .vr-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-panel);
    border-top: 0 solid #222;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      border-top-width 0.3s ease;
  }
  .vr-nav.is-open {
    max-height: 70vh;
    padding: 16px 24px;
    border-top-width: 1px;
  }
  .vr-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .vr-nav__list a {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .vr-top-banner__text {
    font-size: 10px;
  }
  .vr-logo__img {
    max-height: 44px;
  }
}
