.header__menu-container {
  grid-area: H_menu;
  min-width: 0;
}
@media (max-width: 767.98px) {
  .header__menu-container {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.header__menu a {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  font-size: 1.5rem;
  transition: color 0.2s ease;
}
.header__menu a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.header__menu a:hover {
  color: var(--blue-600);
}
.header__menu a:hover:after {
  transform: scaleX(1);
}

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