header {
  color: #fff;
  background-color: #000;
}

.ebp-header-1 {
  position: relative;
}

.ebp-header-1__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ebp-header-1__menu {
  display: flex;
  gap: 2.5rem;
  margin-block: 0;
}

.ebp-header-1 {
  margin-block: 2rem;
}

.ebp-header-1__mobile-menu {
  display: none;
}

.ebp-header-1__mobile-menu-button {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem 0.6rem;
}

.ebp-header-1__mobile-menu-button span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background-color: currentColor;
}

.ebp-header-1__mobile-menu-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 16rem;
  background: #000;
  padding: 1rem;
  z-index: 20;
}

.ebp-header-1__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .ebp-header-1__nav {
    display: none;
  }

  .ebp-header-1__mobile-menu {
    display: block;
    position: relative;
  }
}
