.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--deep);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--sun);
}

.breadcrumb [aria-current="page"] {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer-legal {
    flex-wrap: wrap;
  }
}
