@import url("/assets/tokens.css");

html {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

.ch-body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-background);
  color: var(--color-text-primary);
  box-sizing: border-box;
}

.ch-body *,
.ch-body *::before,
.ch-body *::after {
  box-sizing: border-box;
}

.ch-page {
  --ch-ink: var(--color-text-primary);
  --ch-muted: var(--color-text-secondary);
  --ch-brand: var(--color-primary);
  --ch-card: var(--color-card);
  --ch-secondary: var(--color-secondary-bg);
  --ch-line: var(--color-border);
  --ch-shadow: var(--color-shadow);
  --ch-radius: var(--color-radius);
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  margin: 0 auto;
  padding: 20px 16px 100px;
}

.hidden {
  display: none !important;
}

/* ── 진행률 · 로드맵 ─────────────────────────────── */
.ch-progress-wrap {
  position: sticky;
  top: 0;
  z-index: 5;
  box-sizing: border-box;
  width: calc(100% + 32px);
  max-width: none;
  margin: -20px -16px 20px;
  padding: 14px 16px;
  background: var(--ch-card);
  border-bottom: 1px solid var(--ch-line);
}

.ch-progress-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ch-ink);
}

.ch-progress-percent {
  color: var(--ch-muted);
  font-weight: 800;
}

.ch-progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--ch-secondary);
  overflow: hidden;
}

.ch-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--ch-brand);
  transition: width 0.5s ease;
}

.ch-streak {
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 900;
  color: #ea580c;
}

.ch-roadmap {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.ch-pill {
  flex: 1;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.ch-pill--locked {
  background: var(--ch-secondary);
  color: var(--ch-muted);
  opacity: 0.6;
}

.ch-pill--pending {
  background: #f3f4f6;
  color: #9ca3af;
  border: 1.5px dashed #d1d5db;
  opacity: 1;
}

.ch-pill--current {
  background: var(--ch-brand);
  color: #fff;
  box-shadow: var(--ch-shadow);
  border: 0;
}

.ch-pill--done {
  background: var(--color-success);
  color: #fff;
  border: 0;
}

/* ── 공용 ─────────────────────────────── */
.ch-screen {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  overflow-wrap: break-word;
  word-break: keep-all;
  animation: ch-fade-in 0.4s ease;
}

@keyframes ch-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ch-eyebrow {
  margin: 0 0 12px;
  color: var(--ch-brand);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 950;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  text-decoration: none;
  max-width: 100%;
}

.ch-btn:hover {
  transform: translateY(-2px);
}

.ch-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.ch-btn-primary {
  background: var(--ch-brand);
  color: #fff;
}

.ch-btn-secondary {
  background: var(--ch-card);
  color: var(--ch-ink);
  border: 1px solid var(--ch-line);
}

.ch-btn-lg {
  width: 100%;
  min-height: 54px;
  font-size: 17px;
}

.ch-btn-xl {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
  margin-top: 8px;
}

/* ── 인트로 ─────────────────────────────── */
.ch-hero-title {
  margin: 0 0 16px;
  font-size: clamp(22px, 6.2vw, 34px);
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ch-ink);
  text-align: center;
  display: grid;
  gap: 10px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.ch-hero-title__hook,
.ch-hero-title__body {
  display: block;
}

.ch-hero-title__hook {
  font-size: 1.05em;
}

.ch-hero-title__body {
  font-size: 0.92em;
  font-weight: 900;
  color: var(--ch-brand);
  line-height: 1.4;
}

.ch-hero-lead {
  margin: 0 0 22px;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.75;
  color: var(--ch-muted);
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.ch-curriculum {
  margin: 0 0 22px;
  padding: 18px 16px 16px;
  border-radius: var(--ch-radius);
  background: var(--ch-card);
  border: 1px solid var(--ch-line);
  box-shadow: 0 8px 24px var(--ch-shadow);
}

.ch-curriculum__eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ch-brand);
}

.ch-curriculum__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ch-curriculum__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--ch-secondary);
}

.ch-curriculum__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ch-line);
  font-size: 11px;
  font-weight: 950;
  color: var(--ch-brand);
  line-height: 1.2;
  white-space: nowrap;
}

.ch-curriculum__label {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--ch-ink);
  word-break: keep-all;
}

@media (min-width: 560px) {
  .ch-curriculum {
    padding: 20px;
  }

  .ch-curriculum__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 760px) {
  .ch-curriculum__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ch-curriculum__item:last-child {
    grid-column: 2;
  }
}

.ch-br-narrow {
  display: none;
}

@media (max-width: 420px) {
  .ch-hero-title {
    font-size: clamp(20px, 6.8vw, 26px);
    gap: 8px;
  }

  .ch-br-narrow {
    display: inline;
  }
}

.ch-philosophy {
  margin: 0 0 22px;
  padding: 20px;
  border-radius: var(--ch-radius);
  background: linear-gradient(180deg, var(--ch-card) 0%, var(--ch-secondary) 100%);
  border: 1px solid var(--ch-line);
  text-align: center;
}

.ch-philosophy p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--ch-ink);
}

.ch-philosophy__sub {
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--ch-brand) !important;
}

.ch-intro-rules {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.ch-intro-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ch-secondary);
  font-size: 14px;
  font-weight: 800;
  color: var(--ch-ink);
}

.ch-resource-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ch-muted);
  font-weight: 600;
}

.ch-resource-note a {
  color: var(--ch-brand);
  font-weight: 800;
}

/* ── DAY 화면 ─────────────────────────────── */
.ch-mission-banner {
  padding: 18px 20px;
  border-radius: var(--ch-radius);
  background: var(--ch-brand);
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: var(--ch-shadow);
}

.ch-mission-label {
  margin: 0 0 6px;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
}

.ch-mission-text {
  margin: 0;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.5;
}

.ch-day-num {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--ch-brand);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ch-insight {
  margin: 0 0 24px;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 950;
  line-height: 1.5;
  text-align: center;
  color: var(--ch-ink);
  letter-spacing: -0.02em;
}

.ch-insight-accent {
  color: #e07a5f;
  font-weight: 950;
}

.ch-flow-block {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: var(--ch-radius);
  background: var(--ch-card);
  border: 1px solid var(--ch-line);
}

.ch-flow-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 950;
  color: var(--ch-brand);
}

.ch-why p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ch-muted);
  font-weight: 600;
}

.ch-why p:last-child {
  margin-bottom: 0;
}

.ch-training-steps {
  margin: 0 0 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.ch-training-steps li {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ch-ink);
  font-weight: 700;
}

.ch-example {
  padding: 14px;
  border-radius: 14px;
  background: var(--ch-secondary);
}

.ch-example__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--ch-brand);
  letter-spacing: 0.04em;
}

.ch-example p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ch-ink);
  line-height: 1.75;
  text-align: left;
}

.ch-diphthong {
  display: inline;
  font-weight: 900;
  color: #e07a5f;
}

.ch-pause {
  display: inline;
  margin: 0 2px;
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--color-primary-hover, #0d655e);
  background: rgba(15, 118, 110, 0.12);
  vertical-align: baseline;
}

.ch-example-extra {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ch-line);
}

.ch-example-extra p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--ch-ink);
}

.ch-example-extra p + p {
  margin-top: 10px;
}

.ch-example-extra__sample {
  padding: 12px;
  border-radius: 10px;
  background: var(--ch-card);
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  color: var(--ch-brand) !important;
}

.ch-recording-hint {
  margin: 0 0 14px !important;
  font-size: 14px !important;
  color: var(--ch-muted) !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}

.ch-recorder {
  text-align: center;
}

.ch-record-timer {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ch-brand);
  font-variant-numeric: tabular-nums;
}

.ch-audio-wrap {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.ch-audio-wrap audio {
  width: 100%;
}

.ch-audio-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.ch-audio-actions .ch-btn {
  flex: 1;
}

@media (max-width: 380px) {
  .ch-audio-actions {
    flex-direction: column;
  }
}

.ch-record-fallback {
  margin: 0 !important;
  font-size: 13.5px !important;
  color: var(--ch-muted) !important;
}

.ch-checklist {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.ch-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ch-secondary);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ch-ink);
  cursor: pointer;
}

.ch-check-item input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--ch-brand);
  flex-shrink: 0;
}

.ch-journal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ch-muted);
}

.ch-journal-input {
  width: 100%;
  border: 1px solid var(--ch-line);
  border-radius: 14px;
  background: var(--ch-card);
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ch-ink);
  outline: none;
  box-sizing: border-box;
}

.ch-journal-input:focus {
  border-color: var(--ch-brand);
}

/* ── 축하 화면 ─────────────────────────────── */
.ch-screen--celebrate {
  text-align: center;
  padding-top: 40px;
  max-width: 100%;
}

.ch-celebrate-emoji {
  font-size: 48px;
  margin: 0 0 16px;
}

.ch-celebrate-msg {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 950;
  color: var(--ch-ink);
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: break-word;
}

.ch-celebrate-teaser {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--ch-radius);
  background: var(--ch-secondary);
  max-width: 100%;
  min-width: 0;
}

.ch-celebrate-teaser p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ch-muted);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.ch-celebrate-teaser__quote {
  font-size: 17px !important;
  font-weight: 950 !important;
  color: var(--ch-ink) !important;
  margin: 6px 0 !important;
  overflow-wrap: break-word;
}

.ch-celebrate-actions {
  display: flex;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
}

.ch-celebrate-actions .ch-btn-lg {
  width: auto;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 420px) {
  .ch-celebrate-actions {
    flex-direction: column;
  }
}

/* ── 완주 리포트 화면 ─────────────────────────────── */
.ch-screen--complete {
  text-align: center;
  padding-top: 24px;
  max-width: 100%;
}

.ch-badge-emoji {
  font-size: 56px;
  margin: 0 0 8px;
}

.ch-badge-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.5;
  color: var(--ch-ink);
  max-width: 100%;
  overflow-wrap: break-word;
}

.ch-complete-quote {
  margin-bottom: 22px;
  padding: 22px 18px;
  border-radius: var(--ch-radius);
  background: linear-gradient(180deg, var(--ch-card) 0%, var(--ch-secondary) 100%);
  border: 1px solid var(--ch-line);
  max-width: 100%;
  min-width: 0;
}

.ch-complete-quote p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--ch-ink);
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.ch-complete-quote p:last-child {
  margin-bottom: 0;
}

.ch-complete-quote__lead {
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  margin-bottom: 12px !important;
}

.ch-complete-quote__sub {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--ch-muted) !important;
  font-weight: 600 !important;
}

@media (max-width: 420px) {
  .ch-complete-quote {
    padding: 20px 16px;
  }

  .ch-complete-quote p {
    font-size: 15px;
    line-height: 1.8;
  }

  .ch-complete-quote__lead {
    font-size: 17px !important;
  }

  .ch-complete-quote__sub {
    font-size: 13.5px !important;
    line-height: 1.75 !important;
  }
}

/* PDF 캡처용: 한 장(A4)에 들어가도록 조밀한 레이아웃 */
.ch-report-pdf-capture .ch-report-card {
  margin-bottom: 14px;
  padding: 16px 18px;
}

.ch-report-pdf-capture .ch-report-subtitle {
  margin-bottom: 10px;
  font-size: 13px;
}

.ch-report-pdf-capture .ch-report-list {
  gap: 5px;
}

.ch-report-pdf-capture .ch-report-list li {
  font-size: 13px;
  line-height: 1.35;
}

.ch-report-pdf-capture .ch-journal-log {
  margin-bottom: 0;
}

.ch-report-pdf-capture .ch-journal-log__title {
  margin-bottom: 8px;
  font-size: 15px;
}

.ch-report-pdf-capture .ch-journal-log__list {
  gap: 6px;
}

.ch-report-pdf-capture .ch-journal-entry {
  padding: 8px 10px;
  border-radius: 10px;
}

.ch-report-pdf-capture .ch-journal-entry__day {
  margin-bottom: 2px;
  font-size: 11px;
}

.ch-report-pdf-capture .ch-journal-entry__text {
  font-size: 12.5px;
  line-height: 1.4;
}

.ch-report-card {
  margin-bottom: 22px;
  padding: 22px;
  border-radius: var(--ch-radius);
  background: var(--ch-brand);
  color: #fff;
}

.ch-report-subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.92;
  letter-spacing: -0.01em;
}

.ch-report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.ch-report-list li {
  font-size: 14px;
  font-weight: 700;
}

.ch-journal-log {
  margin-bottom: 24px;
  text-align: left;
}

.ch-journal-log__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 950;
  color: var(--ch-ink);
  text-align: center;
}

.ch-journal-log__list {
  display: grid;
  gap: 10px;
}

.ch-journal-entry {
  padding: 14px;
  border-radius: 14px;
  background: var(--ch-secondary);
  max-width: 100%;
  min-width: 0;
}

.ch-journal-entry__day {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  color: var(--ch-brand);
  overflow-wrap: break-word;
}

.ch-journal-entry__text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-ink);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ch-report-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.ch-report-actions .ch-btn {
  flex: 1;
  width: auto;
}

@media (max-width: 420px) {
  .ch-report-actions {
    flex-direction: column;
  }
}

.ch-rediagnose-prompt {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ch-ink);
  line-height: 1.6;
}

@media print {
  body.ch-printing-report {
    background: #fff !important;
    color: #0f172a;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.ch-printing-report .site-header,
  body.ch-printing-report .ch-progress-wrap,
  body.ch-printing-report .ch-badge-emoji,
  body.ch-printing-report .ch-badge-title,
  body.ch-printing-report .ch-complete-quote,
  body.ch-printing-report .ch-report-actions,
  body.ch-printing-report .ch-rediagnose-prompt,
  body.ch-printing-report #chRediagnoseBtn,
  body.ch-printing-report .ch-footer,
  body.ch-printing-report .ch-toast,
  body.ch-printing-report .ch-mobile-print-hint {
    display: none !important;
  }

  body.ch-printing-report .ch-page {
    max-width: none;
    padding: 0;
    margin: 0;
  }

  body.ch-printing-report .ch-report-card,
  body.ch-printing-report .ch-journal-entry {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

.ch-footer {
  margin-top: 32px;
  text-align: center;
}

.ch-footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ch-muted);
}

.ch-toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  width: auto;
  max-width: min(480px, calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(20px);
  background: var(--ch-brand);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 800;
  z-index: 40;
  text-align: center;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.ch-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.ch-intro-resume {
  width: 100%;
  margin-top: 0;
}

/* ── 휴대폰 확인 ─────────────────────────────── */
.ch-verify-form {
  margin: 28px 0 20px;
  padding: 20px;
  border-radius: var(--ch-radius);
  background: var(--ch-card);
  border: 1px solid var(--ch-line);
  box-shadow: 0 8px 24px var(--ch-shadow);
}

.ch-verify-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ch-muted);
}

.ch-verify-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--ch-line);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ch-ink);
  background: var(--color-background);
}

.ch-verify-input:focus {
  outline: none;
  border-color: var(--ch-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ch-brand) 18%, transparent);
}

.ch-verify-error {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #c0392b;
}

.ch-verify-foot {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ch-muted);
  text-align: center;
}

.ch-verify-foot a {
  color: var(--ch-brand);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 640px) {
  .ch-page {
    padding: 28px 24px 100px;
  }

  .ch-progress-wrap {
    width: calc(100% + 48px);
    margin: -28px -24px 24px;
    padding: 16px 24px;
  }

  .ch-toast {
    left: 50%;
    right: auto;
    width: min(480px, calc(100% - 48px));
    max-width: min(480px, calc(100% - 48px));
    transform: translateX(-50%) translateY(20px);
  }

  .ch-toast.show {
    transform: translateX(-50%) translateY(0);
  }
}
