/* ─── Gradient Text ─── */
.u-gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Visually Hidden (screen readers) ─── */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Desktop-only / Mobile-only ─── */
.u-desktop-only {
  display: none;
}

.u-mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .u-desktop-only {
    display: block;
  }
  .u-mobile-only {
    display: none;
  }
}

/* ─── Text alignment ─── */
.u-text-center {
  text-align: center;
}

/* ─── No scroll when overlay is open ─── */
.u-no-scroll {
  overflow: hidden;
}
