/* 베에르레슨 — 필요한 스타일만 직접 적었습니다 (옛 기기에서도 열립니다) */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FDF2F4; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, pre { margin: 0; }
svg { display: block; }

/* 배치 */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-0 { left: 0; } .right-0 { right: 0; }
.left-3 { left: .75rem; }
.top-full { top: 100%; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.z-10 { z-index: 10; } .z-40 { z-index: 40; }

.flex { display: flex; }
.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; } .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-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; } .mb-4 { margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }

.p-1 { padding: .25rem; } .p-2 { padding: .5rem; } .p-3 { padding: .75rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; } .p-10 { padding: 2.5rem; }
.px-1 { padding-left: .25rem; padding-right: .25rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-1 { padding-top: .25rem; } .pt-4 { padding-top: 1rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-10 { padding-left: 2.5rem; } .pr-3 { padding-right: .75rem; }

.w-full { width: 100%; }
.w-2\.5 { width: .625rem; } .w-3 { width: .75rem; } .w-4 { width: 1rem; }
.w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-11 { width: 2.75rem; }
.w-14 { width: 3.5rem; } .w-16 { width: 4rem; } .w-32 { width: 8rem; }
.h-2\.5 { height: .625rem; } .h-3 { height: .75rem; } .h-4 { height: 1rem; }
.h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-11 { height: 2.75rem; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.min-w-\[12rem\] { min-width: 12rem; }
.min-w-\[28\%\] { min-width: 28%; }
.max-w-sm { max-width: 24rem; } .max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; }
.max-h-96 { max-height: 24rem; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }

.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .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; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: ui-monospace, Menlo, Consolas, monospace; }
.text-left { text-align: left; } .text-center { text-align: center; }
.text-white { color: #fff; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: .05em; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words { overflow-wrap: break-word; word-break: break-word; }

.bg-white { background-color: #fff; }
.shadow-sm { box-shadow: 0 1px 2px rgba(90,50,60,.06); }
.shadow-lg { box-shadow: 0 10px 20px rgba(90,50,60,.12); }
.shadow-xl { box-shadow: 0 16px 32px rgba(90,50,60,.18); }
.pointer-events-none { pointer-events: none; }
