/* ── 공통 토큰 (Flutter AppColors와 동기화) ─────────────────── */
:root {
  --aeat-primary: #df6f37;
  --aeat-text-primary: #1a1a1a;
  --aeat-text-secondary: #666666;
}

/* ══ SectionHeader (뱃지 · 섹션 제목 · 소제목) ══════════════════ */
.aeat-section-head {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans KR", "Noto Sans CJK KR", sans-serif;
}

.aeat-section-badge {
  box-sizing: border-box;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.aeat-section-badge--hero {
  padding: 5px 10px;
  border-radius: 14px;
  background: var(--aeat-primary);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2.5px;
}

.aeat-section-badge--filled {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--aeat-primary);
  color: #fff;
}

.aeat-section-badge--subtle {
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(223, 111, 55, 0.08);
  color: var(--aeat-primary);
}

.aeat-section-badge--on-dark {
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(223, 111, 55, 0.2);
  color: #fff;
}

.aeat-section-title {
  margin: 14px 0 0 0;
  padding: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--aeat-text-primary);
  white-space: pre-line;
}

.aeat-section-title--light {
  color: #fff;
}

.aeat-section-subtitle {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--aeat-text-secondary);
  white-space: pre-line;
}

.aeat-section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1200px) {
  .aeat-section-title {
    font-size: 28px;
  }
  .aeat-section-subtitle {
    font-size: 14px;
  }
}

/* ══ Home — AEAT UNIVERSE 블록 ═════════════════════════════════ */
.aeat-universe-head {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans KR", "Noto Sans CJK KR", sans-serif;
}

.aeat-universe-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  background: var(--aeat-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.aeat-universe-title {
  margin: 14px 0 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.018em;
  white-space: pre-line;
}

.aeat-universe-lead {
  margin: 14px 0 0;
  padding: 0;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.05em;
  white-space: pre-line;
}

.aeat-universe-lead--narrow {
  font-size: 17px;
  line-height: 1.5;
}

.aeat-universe-lead--wide {
  font-size: 18px;
  line-height: 1.65;
}

.aeat-universe-slogan {
  margin: 14px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #777777;
}

.aeat-universe-slogan--narrow {
  line-height: 1.5;
}

.aeat-universe-slogan--wide {
  line-height: 1.65;
}

.aeat-universe-slogan-en {
  letter-spacing: -0.03em;
}

.aeat-universe-slogan-kr {
  letter-spacing: -0.05em;
}
