/* ==========================================================================
   BART-DENT — utilities.css (small surgical helpers)
   ========================================================================== */

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bd-stack > * + * { margin-top: var(--space-md); }
.bd-stack-sm > * + * { margin-top: var(--space-sm); }
.bd-flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.bd-text-balance { text-wrap: balance; }
.bd-text-pretty { text-wrap: pretty; }
.bd-no-mobile { display: revert; }
@media (max-width: 759px) { .bd-no-mobile { display: none !important; } }

.bd-divider {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--accent-lime);
  margin-block: var(--space-2xl);
  max-width: 80px;
}

/* Print --------------------------------------------------------- */
@media print {
  .bd-header, .bd-footer, .bd-sticky-cta, .bd-cursor { display: none !important; }
  body { background: white; color: black; }
}
