/* Lightweight layout utilities (replaces Tailwind CDN on inner pages) */
.hidden {
  display: none !important;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.items-center {
  align-items: center;
}
.self-center {
  align-self: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-8 {
  gap: 2rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-6xl {
  max-width: 72rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.font-sans {
  font-family: var(--font-sans);
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text-xs {
  font-size: 0.75rem;
}
.font-semibold {
  font-weight: 600;
}
.font-display {
  font-family: var(--font-display);
}
.uppercase {
  text-transform: uppercase;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.text-zinc-400 {
  color: #a1a1aa;
}
.text-white {
  color: #fff;
}
.text-namu-accent,
.text-namu-accent:is(:link, :visited) {
  color: var(--accent) !important;
}
.transition {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hover\:text-white:hover {
  color: #fff;
}
.hover\:underline:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }
  .md\:hidden {
    display: none !important;
  }
  .md\:inline-flex {
    display: inline-flex !important;
  }
  .hidden.md\:flex {
    display: flex !important;
  }
  .hidden.md\:inline-flex {
    display: inline-flex !important;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
