/* Tailwind CSS Production Build - Portfolio Facundo Aparicio */
/* Este archivo contiene todas las clases de Tailwind que se usan en el proyecto */

/* Base styles */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
}

/* Backdrop blur utilities */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Gradient utilities */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-purple-50 {
  --tw-gradient-from: #faf5ff;
  --tw-gradient-to: rgb(250 245 255 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-indigo-50 {
  --tw-gradient-to: #eef2ff;
}
.from-purple-900\/20 {
  --tw-gradient-from: rgb(88 28 135 / 0.2);
  --tw-gradient-to: rgb(88 28 135 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-indigo-900\/20 {
  --tw-gradient-to: rgb(49 46 129 / 0.2);
}
.from-green-50 {
  --tw-gradient-from: #f0fdf4;
  --tw-gradient-to: rgb(240 253 244 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-emerald-50 {
  --tw-gradient-to: #ecfdf5;
}
.from-green-900\/20 {
  --tw-gradient-from: rgb(20 83 45 / 0.2);
  --tw-gradient-to: rgb(20 83 45 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-emerald-900\/20 {
  --tw-gradient-to: rgb(6 78 59 / 0.2);
}
.from-first-color {
  --tw-gradient-from: var(--first-color);
  --tw-gradient-to: rgb(var(--first-color) / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-first-color-alt {
  --tw-gradient-to: var(--first-color-alt);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1;
  --tw-gradient-to: rgb(99 102 241 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5;
}
.from-yellow-500 {
  --tw-gradient-from: #eab308;
  --tw-gradient-to: rgb(234 179 8 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-yellow-600 {
  --tw-gradient-to: #ca8a04;
}
.from-green-500 {
  --tw-gradient-from: #22c55e;
  --tw-gradient-to: rgb(34 197 94 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-green-600 {
  --tw-gradient-to: #16a34a;
}
.from-pink-500 {
  --tw-gradient-from: #ec4899;
  --tw-gradient-to: rgb(236 72 153 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-pink-600 {
  --tw-gradient-to: #db2777;
}
.from-red-500 {
  --tw-gradient-from: #ef4444;
  --tw-gradient-to: rgb(239 68 68 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-red-600 {
  --tw-gradient-to: #dc2626;
}
.from-orange-500 {
  --tw-gradient-from: #f97316;
  --tw-gradient-to: rgb(249 115 22 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-orange-600 {
  --tw-gradient-to: #ea580c;
}

/* Utility classes used in the project */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.contents { display: contents; }
.table { display: table; }

/* Flexbox utilities */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

/* Grid utilities */
.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)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* Spacing utilities */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-4 { padding-top: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-auto { margin-top: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }

/* Sizing utilities */
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-full { height: 100%; }
.min-h-\[80px\] { min-height: 80px; }
.min-h-\[calc\(100vh-var\(--header-height\)\)\] { min-height: calc(100vh - var(--header-height)); }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-screen-xl { max-width: 1280px; }
.min-w-\[50px\] { min-width: 50px; }
.min-w-\[60px\] { min-width: 60px; }

/* Positioning utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-\[-100\%\] { right: -100%; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Typography utilities */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-relaxed { line-height: 1.625; }

/* Color utilities */
.text-white { color: rgb(255 255 255); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.text-gray-800 { color: rgb(31 41 55); }
.text-gray-900 { color: rgb(17 24 39); }
.text-red-300 { color: rgb(252 165 165); }
.text-red-800 { color: rgb(153 27 27); }
.text-green-300 { color: rgb(134 239 172); }
.text-green-400 { color: rgb(74 222 128); }
.text-green-600 { color: rgb(22 163 74); }
.text-green-700 { color: rgb(21 128 61); }
.text-green-800 { color: rgb(22 101 52); }
.text-purple-300 { color: rgb(196 181 253); }
.text-purple-600 { color: rgb(147 51 234); }
.text-purple-700 { color: rgb(126 34 206); }
.text-purple-800 { color: rgb(107 33 168); }
.text-blue-700 { color: rgb(29 78 216); }
.text-orange-700 { color: rgb(194 65 12); }
.text-first-color { color: var(--first-color); }
.text-second-color { color: var(--second-color); }
.text-white-color { color: var(--white-color); }

/* Background utilities */
.bg-white { background-color: rgb(255 255 255); }
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-gray-50 { background-color: rgb(249 250 251); }
.bg-gray-100 { background-color: rgb(243 244 246); }
.bg-gray-200 { background-color: rgb(229 231 235); }
.bg-gray-300 { background-color: rgb(209 213 219); }
.bg-gray-600 { background-color: rgb(75 85 99); }
.bg-gray-700 { background-color: rgb(55 65 81); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-red-100 { background-color: rgb(254 226 226); }
.bg-red-900 { background-color: rgb(127 29 29); }
.bg-green-100 { background-color: rgb(220 252 231); }
.bg-green-900 { background-color: rgb(20 83 45); }
.bg-purple-100 { background-color: rgb(243 232 255); }
.bg-blue-100 { background-color: rgb(219 234 254); }
.bg-orange-100 { background-color: rgb(255 237 213); }
.bg-first-color { background-color: var(--first-color); }
.bg-nav-color { background-color: var(--nav-color); }
.bg-body-color { background-color: var(--body-color); }

/* Border utilities */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-200 { border-color: rgb(229 231 235); }
.border-gray-300 { border-color: rgb(209 213 219); }
.border-gray-600 { border-color: rgb(75 85 99); }
.border-gray-700 { border-color: rgb(55 65 81); }
.border-red-200 { border-color: rgb(254 202 202); }
.border-red-800 { border-color: rgb(153 27 27); }
.border-green-200 { border-color: rgb(187 247 208); }
.border-green-800 { border-color: rgb(22 101 52); }
.border-purple-200 { border-color: rgb(233 213 255); }
.border-blue-200 { border-color: rgb(191 219 254); }
.border-orange-200 { border-color: rgb(254 215 170); }
.border-first-color { border-color: var(--first-color); }
.border-first-color\/20 { border-color: rgb(var(--first-color) / 0.2); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Opacity utilities */
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-95 { opacity: 0.95; }

/* Transform utilities */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }

/* Transition utilities */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover utilities */
.hover\:bg-first-color:hover { background-color: var(--first-color); }
.hover\:bg-first-color\/90:hover { background-color: rgb(var(--first-color) / 0.9); }
.hover\:bg-first-color\/10:hover { background-color: rgb(var(--first-color) / 0.1); }
.hover\:bg-white\/90:hover { background-color: rgb(255 255 255 / 0.9); }
.hover\:bg-gray-200:hover { background-color: rgb(229 231 235); }
.hover\:text-first-color:hover { color: var(--first-color); }
.hover\:text-first-color\/80:hover { color: rgb(var(--first-color) / 0.8); }
.hover\:border-first-color:hover { border-color: var(--first-color); }
.hover\:border-first-color\/30:hover { border-color: rgb(var(--first-color) / 0.3); }

/* Focus utilities */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--first-color); }
.focus\:ring-first-color:focus { box-shadow: 0 0 0 2px var(--first-color); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Pseudo-element utilities */
.after\:content-\[\'\'\]:after { content: ''; }
.after\:absolute:after { position: absolute; }
.after\:bottom-\[-0\.5rem\]:after { bottom: -0.5rem; }
.after\:left-0:after { left: 0; }
.after\:left-1\/2:after { left: 50%; }
.after\:w-full:after { width: 100%; }
.after\:h-0\.5:after { height: 0.125rem; }
.after\:h-1:after { height: 0.25rem; }
.after\:bg-first-color:after { background-color: var(--first-color); }
.after\:rounded-full:after { border-radius: 9999px; }
.after\:-translate-x-1\/2:after { transform: translateX(-50%); }
.after\:transform:after { transform: translateX(-50%); }

/* Dark mode utilities */
.dark\:bg-gray-600:is(.dark *) { background-color: rgb(75 85 99); }
.dark\:bg-gray-700:is(.dark *) { background-color: rgb(55 65 81); }
.dark\:bg-gray-700\/50:is(.dark *) { background-color: rgb(55 65 81 / 0.5); }
.dark\:bg-gray-800:is(.dark *) { background-color: rgb(31 41 55); }
.dark\:bg-gray-800\/80:is(.dark *) { background-color: rgb(31 41 55 / 0.8); }
.dark\:text-white:is(.dark *) { color: rgb(255 255 255); }
.dark\:text-gray-200:is(.dark *) { color: rgb(229 231 235); }
.dark\:text-gray-300:is(.dark *) { color: rgb(209 213 219); }
.dark\:text-gray-400:is(.dark *) { color: rgb(156 163 175); }
.dark\:text-purple-300:is(.dark *) { color: rgb(196 181 253); }
.dark\:text-green-300:is(.dark *) { color: rgb(134 239 172); }
.dark\:text-green-400:is(.dark *) { color: rgb(74 222 128); }
.dark\:border-gray-600:is(.dark *) { border-color: rgb(75 85 99); }
.dark\:border-gray-700:is(.dark *) { border-color: rgb(55 65 81); }
.dark\:bg-red-900:is(.dark *) { background-color: rgb(127 29 29); }
.dark\:bg-green-900:is(.dark *) { background-color: rgb(20 83 45); }
.dark\:bg-purple-900\/20:is(.dark *) { background-color: rgb(88 28 135 / 0.2); }
.dark\:bg-indigo-900\/20:is(.dark *) { background-color: rgb(49 46 129 / 0.2); }
.dark\:bg-emerald-900\/20:is(.dark *) { background-color: rgb(6 78 59 / 0.2); }
.dark\:border-red-800:is(.dark *) { border-color: rgb(153 27 27); }
.dark\:border-green-800:is(.dark *) { border-color: rgb(22 101 52); }
.dark\:border-purple-200:is(.dark *) { border-color: rgb(233 213 255); }
.dark\:hover\:bg-gray-600:is(.dark *):hover { background-color: rgb(75 85 99); }
.dark\:hover\:bg-gray-700:is(.dark *):hover { background-color: rgb(55 65 81); }

/* Responsive utilities */
@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)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:gap-16 { gap: 4rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:mt-\[var\(--header-height\)\] { margin-top: var(--header-height); }
  .md\:pt-0 { padding-top: 0; }
  .md\:text-left { text-align: left; }
  .md\:flex-row { flex-direction: row; }
  .md\:gap-16 { gap: 4rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-20 { margin-bottom: 5rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
}

@media (min-width: 1024px) {
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:text-left { text-align: left; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

/* Custom utilities */
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }

/* Additional utility classes */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.resize-none { resize: none; }
.appearance-none { appearance: none; }

/* Additional spacing */
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }

/* Additional sizing */
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }

/* Additional positioning */
.top-\[-100\%\] { top: -100%; }
.right-\[-100\%\] { right: -100%; }

/* Custom classes for the project */
.curserhover { cursor: pointer; }
.curserhover2 { cursor: pointer; }
.active-dia { 
  background: var(--first-color) !important; 
  color: #fff !important; 
  border-color: var(--first-color) !important; 
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.active-hora { 
  background: var(--first-color) !important; 
  color: #fff !important; 
  border-color: var(--first-color) !important; 
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Prose styles for content */
.prose { 
  color: #374151; 
  max-width: 65ch; 
}
.prose-gray { color: #6b7280; }
.prose-invert { color: #d1d5db; }
.prose p { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose h2 { font-size: 1.5em; margin-top: 2em; margin-bottom: 1em; font-weight: 600; }
.prose h3 { font-size: 1.25em; margin-top: 1.6em; margin-bottom: 0.6em; font-weight: 600; }
.prose ul { margin-top: 1.25em; margin-bottom: 1.25em; padding-left: 1.625em; }
.prose li { margin-top: 0.5em; margin-bottom: 0.5em; }
