/* Results screen */
.results {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
}

.results__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.results__title {
  font-family: var(--font-kr-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
}

.results__subtitle {
  font-size: 15px;
  color: var(--ink-3);
  margin-top: 4px;
}

.results__stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.results__stat {
  text-align: center;
  padding: 14px;
}

.results__stat-num {
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--ink);
}

.results__stat-label {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
}

.results__footer {
  padding: 20px;
  border-top: 1px solid var(--hairline);
}
