.header__menu-container {
  display: none;
  grid-area: H_menu;
  min-width: 0;
}
@media (min-width: 1200px) {
  .header__menu-container {
    display: block;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-left: 60px;
}
.header__menu a {
  position: relative;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__menu a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold-100);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.header__menu a:hover, .header__menu a:focus {
  color: var(--gold-100);
}
.header__menu a:hover:after, .header__menu a:focus:after {
  transform: scaleX(1);
}

/*# sourceMappingURL=style.css.map */
