/* Navigation v1 — column links with underline hover (legacy) */

.header--v1 .header__nav {
  width: auto;
  max-width: none;
}

.header--v1 .header__nav-links {
  display: flex;
  gap: 127px;
  font-family: 'PP Mori', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}

.header--v1 .header__nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header--v1 .header__nav-col--wide {
  width: 102px;
}

.header--v1 .header__nav-col--narrow {
  width: 79px;
}

.header--v1 .header__nav-col a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  transition: color 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.header--v1 .header__nav-col a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.header--v1 .header__nav-col a:hover,
.header--v1 .header__nav-col a:focus-visible {
  color: #fb0a0e;
}

.header--v1 .header__nav-col a:hover::after,
.header--v1 .header__nav-col a:focus-visible::after {
  transform: scaleX(0);
}
