/* ── 공통 기반 스타일 ── */
/* hansung, sungshin 등 대학 준비중 페이지에서 공유 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Pretendard', sans-serif;
  background: #F5F2EC;
  color: #1C1C1C;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.back {
  position: fixed; top: 20px; left: 20px;
  font-size: 13px; font-weight: 700; color: #1C1C1C;
  text-decoration: none; letter-spacing: .05em;
  display: flex; align-items: center; gap: 6px;
  opacity: .5; transition: opacity .2s;
}
.back:hover { opacity: 1; }

.badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #FF5200; margin-bottom: 32px;
}

.title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(28px, 7vw, 52px); font-weight: 900;
  line-height: 1.25; letter-spacing: -.02em;
  margin-bottom: 20px;
}

.divider {
  width: 36px; height: 2px; background: #FF5200;
  margin: 0 auto 28px;
}

.desc {
  font-size: 16px; color: #888; line-height: 1.8;
}

/* ── DONATE MINI ── */
.donate-mini {
  background: #111;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-mini::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,82,0,.28) 0%, transparent 65%);
  pointer-events: none;
}
.donate-mini-inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.donate-mini-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #FF5200; border: 1px solid rgba(255,82,0,.4);
  border-radius: 100px; padding: 4px 14px;
}
.donate-mini-headline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.25;
  color: white;
}
.donate-mini-headline span { color: #FF5200; }
.donate-mini-limit {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,82,0,.12); border: 1px solid rgba(255,82,0,.25);
  border-radius: 8px; padding: 7px 14px;
  font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500;
  white-space: nowrap;
}
.donate-mini-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF5200; color: white;
  border: none; border-radius: 100px;
  padding: 14px 28px; font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,82,0,.4);
  letter-spacing: -0.01em;
}
.donate-mini-btn:hover { background: #e04800; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,82,0,.5); }

/* Handmade Section */
.handmade-section {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 72px) clamp(24px, 5vw, 48px);
  text-align: center;
  position: relative;
}
.handmade-section::before {
  content: '</>';
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(60px, 12vw, 100px);
  font-weight: 900;
  font-family: monospace;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.handmade-section .handmade-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FF5200;
  margin-bottom: 16px;
}
.handmade-section .handmade-headline {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.handmade-section .handmade-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #555;
  line-height: 1.8;
  letter-spacing: -.01em;
  margin: 0;
}
.handmade-section .handmade-desc strong {
  color: #1a1a1a;
  font-weight: 700;
}
/* Dark variant (ku) */
.handmade-dark::before {
  color: rgba(255,255,255,0.04);
}
.handmade-dark .handmade-headline {
  color: #fff;
}
.handmade-dark .handmade-desc {
  color: rgba(255,255,255,0.65);
}
.handmade-dark .handmade-desc strong {
  color: #fff;
}
