/**
 * Tailwind-style layout helpers (theme-specific).
 */
.pz-container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}

.pz-container--narrow {
  width: min(100% - 2.5rem, 40rem);
}

.pz-stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap, 1rem);
}

.pz-stack--lg {
  --stack-gap: 1.75rem;
}

.pz-text-center {
  text-align: center;
}

.pz-text-muted {
  color: var(--muted);
}

.pz-text-heading {
  color: var(--text-heading);
}

.pz-mt-0 {
  margin-top: 0;
}

.pz-mb-0 {
  margin-bottom: 0;
}

.pz-mb-sm {
  margin-bottom: 0.75rem;
}

.pz-mb-md {
  margin-bottom: 1.25rem;
}

.pz-mb-lg {
  margin-bottom: 2rem;
}

.pz-mb-xl {
  margin-bottom: 3rem;
}

.pz-mx-auto {
  margin-inline: auto;
}

.pz-mt-sm {
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .pz-md-text-left {
    text-align: left;
  }
}
