/* Dolfwa engine stylesheet — GENERATED SITES ONLY.
   Covers exactly the utility vocabulary of src/components/site-renderer.tsx
   (guarded by a unit test) so published pages have zero runtime dependencies. */

:root {
  --paper: #f2f4f1;
  --hairline: #dde0dc;
  --body2: #4a4e4b;
  --muted: #6b6f6c;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #fff; color: #111; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, figure, blockquote, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
iframe { display: block; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* layout */
.grid { display: grid; }
.flex { display: flex; }
.block { display: block; }
.flex-none { flex: none; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.mx-auto { margin-inline: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.p-4 { padding: 1rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.py-1 { padding-block: 0.25rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-10 { padding-block: 2.5rem; }
.py-16 { padding-block: 4rem; }
.pb-1 { padding-bottom: 0.25rem; }

/* sizing */
.w-5 { width: 1.25rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-11 { width: 2.75rem; }
.w-full { width: 100%; }
.h-0\.5 { height: 0.125rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-11 { height: 2.75rem; }
.max-h-64 { max-height: 16rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.min-w-0 { min-width: 0; }
.aspect-square { aspect-ratio: 1 / 1; }

/* type */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.leading-relaxed { line-height: 1.75; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-line { white-space: pre-line; }

/* color */
.bg-white { background-color: #fff; }
.bg-paper { background-color: var(--paper); }
.bg-black\/30 { background-color: rgb(0 0 0 / 0.3); }
.text-white { color: #fff; }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/85 { color: rgb(255 255 255 / 0.85); }
.text-body2 { color: var(--body2); }
.text-muted { color: var(--muted); }

/* borders & misc */
.border { border: 1px solid var(--hairline); }
.border-0 { border: 0; }
.border-b { border-bottom: 1px solid var(--hairline); }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-hairline { border-color: var(--hairline); }
.rounded-full { border-radius: 9999px; }
.object-cover { object-fit: cover; }
.overflow-x-auto { overflow-x: auto; }
.cursor-pointer { cursor: pointer; }

/* responsive: the renderer emits compact classes itself, but menus/grids need
   to stack on narrow screens even in "desktop" markup */
@media (max-width: 720px) {
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .text-4xl { font-size: 1.75rem; line-height: 2.25rem; }
}
