:root {
  --home-bg: #f6f7fb;
  --home-surface: #ffffff;
  --home-border: #e5e8ef;
  --home-shadow: 0 20px 60px rgba(17, 38, 146, 0.08);
  --home-primary: #2d6cdf;
  --home-accent: #3dc7a3;
  --home-text: #1f2937;
  --home-muted: #6b7280;
}

.home-page {
  background: radial-gradient(circle at 16% 20%, rgba(61, 199, 163, 0.16), transparent 28%),
    radial-gradient(circle at 78% 10%, rgba(45, 108, 223, 0.2), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(255, 193, 7, 0.18), transparent 22%),
    var(--home-bg);
  padding: 24px 0 48px;
  font-family: 'Pretendard', 'Inter', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.home-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.home-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1d2b64 100%);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--home-shadow);
  color: #fff;
  margin-bottom: 20px;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 12px;
}

.home-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.home-hero__title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

.home-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.home-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.home-btn {
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-btn--primary {
  background: #fff;
  color: #1f2d5c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.home-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.home-card {
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  box-shadow: var(--home-shadow);
  padding: 16px;
}

.home-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.home-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--home-text);
  margin: 0;
}

.home-card__subtitle {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
}

.home-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-list__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--home-border);
}

.home-list__item:last-child {
  border-bottom: none;
}

.home-list__title a {
  color: var(--home-text);
  font-weight: 700;
  text-decoration: none;
}

.home-list__title a:hover {
  color: var(--home-primary);
  text-decoration: underline;
}

.home-list__meta {
  color: var(--home-muted);
  font-size: 13px;
  white-space: nowrap;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef1f7;
  color: var(--home-text);
  font-weight: 700;
  font-size: 12px;
}

.home-pill--accent {
  background: rgba(45, 108, 223, 0.14);
  color: #1f2d5c;
}

.home-pill--success {
  background: rgba(61, 199, 163, 0.18);
  color: #136b56;
}

.home-birthday-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-birthday-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 10px 12px;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  background: #f9fbff;
  align-items: center;
}

.home-birthday-row:nth-child(odd) {
  background: #fff;
}

.home-birthday-row strong {
  color: var(--home-text);
}

.home-birthday-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 6px 12px;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }
}

