/* Static Tailwind-compatible utilities used by the current Bloomod Blade views.
   Preflight is intentionally omitted so Bloomod's approved component CSS remains authoritative. */

.relative { position: relative; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: .5rem; margin-bottom: .5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.ml-2 { margin-left: .5rem; }
.ml-auto { margin-left: auto; }
.mt-1 { margin-top: .25rem; }
.mt-1\.5 { margin-top: .375rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: .5rem; }
.gap-y-4 { row-gap: 1rem; }
.max-w-\[26ch\] { max-width: 26ch; }
.max-w-\[28ch\] { max-width: 28ch; }
.max-w-\[30ch\] { max-width: 30ch; }
.max-w-\[34ch\] { max-width: 34ch; }
.max-w-\[46ch\] { max-width: 46ch; }
.max-w-\[48ch\] { max-width: 48ch; }
.max-w-\[52ch\] { max-width: 52ch; }
.max-w-\[54ch\] { max-width: 54ch; }
.max-w-\[58ch\] { max-width: 58ch; }
.max-w-\[62ch\] { max-width: 62ch; }
.max-w-\[64ch\] { max-width: 64ch; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-start-2 { grid-column-start: 2; }
  .lg\:col-start-8 { grid-column-start: 8; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:gap-14 { gap: 3.5rem; }
  .lg\:gap-16 { gap: 4rem; }
}
