/* Screen reader only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  padding: var(--sp-sm) var(--sp-lg);
  z-index: calc(var(--z-menu) + 10);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: var(--color-bg-primary);
}

/* Text alignment */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
