:root {
  --bg: #fbf7ef;
  --card: #ffffff;
  --ink: #15164c;
  --muted: #6d7085;
  --primary: #7c5cff;
  --primary-dark: #6241e8;
  --primary-soft: #efe9ff;
  --mint: #82d9b2;
  --yellow: #ffbf4d;
  --pink: #ff8fa3;
  --line: rgba(22, 24, 76, 0.1);
  --shadow: 0 18px 45px rgba(49, 39, 116, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: radial-gradient(circle at top left, #f3ecff 0, transparent 26rem), var(--bg); color: var(--ink); }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }

.app-shell {
  width: min(100%, 430px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 18px max(20px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
}

.screen { display: none; width: 100%; animation: fadeUp .25s ease both; }
.screen.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.top-pill {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #4e3bb3;
  font-size: 13px;
  font-weight: 700;
}

.hero-card, .question-screen, .result-screen {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  overflow: hidden;
}

.intro-screen .hero-card { text-align: center; position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -55px -30px;
  height: 170px;
  background: linear-gradient(180deg, rgba(239, 233, 255, .35), rgba(226, 218, 255, .72));
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

.eyebrow { margin: 0 0 10px; color: var(--primary-dark); font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.centered { text-align: center; }
.cloud-title h1 { margin: 0; font-size: clamp(36px, 11vw, 48px); line-height: 1.06; letter-spacing: -.08em; color: var(--ink); }
.cloud-title h1 span { color: var(--primary); }
.lead { margin: 18px 0 0; color: var(--muted); line-height: 1.65; font-weight: 650; }

.name-box {
  margin: 22px 0 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  text-align: left;
}
.name-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.name-box input {
  width: 100%;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  padding: 0 15px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(49, 39, 116, .08);
  outline: none;
}
.name-box input:focus {
  border-color: var(--primary);
}
.name-help {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}
.name-help.error {
  color: #e5484d;
}
.primary-btn:disabled {
  opacity: .58;
  cursor: not-allowed;
}


.mascot.clipboard {
  width: 150px;
  height: 176px;
  margin: 34px auto 26px;
  border-radius: 24px;
  background: #fff;
  border: 5px solid #b69cff;
  box-shadow: 0 16px 32px rgba(124, 92, 255, .22);
  position: relative;
  padding-top: 54px;
}
.clipboard .clip, .clip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 42px;
  background: linear-gradient(180deg, #9d7cff, #7c5cff);
  border-radius: 18px 18px 10px 10px;
}
.clipboard .clip::before { content: ""; position: absolute; top: 9px; left: 31px; width: 16px; height: 16px; border-radius: 50%; background: #fff; opacity: .95; }
.face { font-size: 26px; color: #1b1c4f; margin-bottom: 16px; }
.check-row { width: 92px; height: 10px; margin: 13px auto 0; background: linear-gradient(90deg, #7c5cff 0 18px, #d9d8e3 18px 100%); border-radius: 99px; }
.check-row.short { width: 74px; }

.primary-btn, .secondary-btn, .outline-btn, .ghost-btn {
  width: 100%;
  min-height: 58px;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 850;
  transition: transform .12s ease, opacity .12s ease;
}
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 26px rgba(124, 92, 255, .36);
}
.primary-btn span { margin-left: 8px; font-size: 24px; }
.primary-btn.compact { margin-top: 0; }
.outline-btn {
  color: var(--primary-dark);
  background: #fff;
  border: 2px solid rgba(124, 92, 255, .26);
  box-shadow: 0 10px 22px rgba(49, 39, 116, .08);
}
.ghost-btn {
  min-height: 48px;
  margin-top: 10px;
  color: var(--muted);
  background: transparent;
  font-size: 15px;
  box-shadow: none;
}
.secondary-btn {
  color: var(--primary-dark);
  background: linear-gradient(180deg, #f7f2ff, #ede5ff);
  margin-top: 18px;
}
.secondary-btn:disabled { opacity: .46; cursor: not-allowed; }
button:active { transform: translateY(1px) scale(.99); }
.time-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.question-screen { padding: 22px; }
.question-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.icon-btn { width: 38px; height: 38px; border-radius: 14px; background: transparent; color: var(--ink); font-size: 32px; line-height: 1; }
.progress-text { font-size: 18px; color: var(--primary-dark); font-weight: 900; }
.spacer { width: 38px; }
.progress-track { height: 10px; background: #e5e2ec; border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, #8d6cff, #b395ff); border-radius: inherit; transition: width .18s ease; }
.question-title { margin: 0 0 18px; font-size: 24px; line-height: 1.35; letter-spacing: -.055em; text-align: center; }
.options { display: grid; gap: 9px; }
.option-card {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 15px;
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(49, 39, 116, .08);
  text-align: left;
  font-size: 15px;
  font-weight: 850;
}
.option-card.selected { border-color: var(--primary); background: #fbf9ff; }
.option-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #f0ecff; font-size: 22px; }

.result-screen { text-align: center; }
.result-card {
  margin-top: 12px;
  padding: 24px 18px 22px;
  background: linear-gradient(180deg, #fff8e9, #fffdf8);
  border: 1px solid rgba(255, 191, 77, .55);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(255, 191, 77, .18);
}
.result-icon { font-size: 38px; }
.result-card h2 { margin: 8px 0 18px; color: #42250e; font-size: 34px; letter-spacing: -.075em; }
.result-mascot { width: 170px; height: 170px; margin: 0 auto 20px; position: relative; }
.result-mascot .head {
  position: absolute;
  left: 50%; top: 46px;
  transform: translateX(-50%);
  width: 84px; height: 78px;
  display: grid; place-items: center;
  border-radius: 42% 42% 48% 48%;
  background: #ffe1bd;
  font-size: 22px;
  z-index: 2;
}
.helmet { position: absolute; left: 38px; top: 24px; width: 94px; height: 70px; border-radius: 50% 50% 18px 18px; background: linear-gradient(180deg, #cfd2da, #9ca3af); z-index: 3; opacity: .92; }
.body { position: absolute; left: 47px; bottom: 12px; width: 76px; height: 72px; border-radius: 22px 22px 18px 18px; background: linear-gradient(180deg, #7053de, #4d3aac); z-index: 1; }
.shield { position: absolute; right: 17px; bottom: 26px; width: 48px; height: 58px; display: grid; place-items: center; color: #fff; background: linear-gradient(180deg, #8d6cff, #6044db); border-radius: 22px 22px 26px 26px; z-index: 4; }
.result-mascot.battery .helmet, .result-mascot.happy .helmet, .result-mascot.routine .helmet, .result-mascot.focus .helmet, .result-mascot.solver .helmet, .result-mascot.overload .helmet, .result-mascot.logout .helmet { display: none; }
.result-mascot.battery::before, .result-mascot.happy::before, .result-mascot.routine::before, .result-mascot.focus::before, .result-mascot.solver::before, .result-mascot.overload::before, .result-mascot.logout::before { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); font-size: 54px; z-index: 5; }
.result-mascot.battery::before { content: '🔋'; }
.result-mascot.happy::before { content: '🍪'; }
.result-mascot.routine::before { content: '🕊️'; }
.result-mascot.focus::before { content: '⚡'; }
.result-mascot.solver::before { content: '🚨'; }
.result-mascot.overload::before { content: '🚥'; }
.result-mascot.logout::before { content: '🫠'; }
.result-main { margin: 0; color: #3f342c; font-size: 18px; font-weight: 850; line-height: 1.5; word-break: keep-all; }
.result-sub { margin: 9px auto 0; color: #6b5542; font-size: 15px; font-weight: 700; line-height: 1.55; word-break: keep-all; max-width: 280px; }
.team-badge { display: inline-flex; align-items: center; margin-top: 18px; padding: 10px 14px; border-radius: 999px; background: #fff1c7; color: #8a5a00; font-size: 14px; font-weight: 850; }
.save-status { min-height: 22px; margin: 14px 0 0; color: var(--muted); font-size: 14px; font-weight: 750; }
.capture-notice {
  margin: 10px 0 4px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(124, 92, 255, .08);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
}

.admin-shell { width: min(100%, 720px); margin: 0 auto; padding: 24px 18px 54px; }
.admin-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.admin-header h1 { margin: 0; font-size: 28px; letter-spacing: -.06em; }
.admin-link, .download-link { color: var(--primary-dark); text-decoration: none; font-weight: 850; white-space: nowrap; }
.admin-key-card, .admin-panel, .stat-card { background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.85); border-radius: 24px; box-shadow: 0 14px 32px rgba(49, 39, 116, .1); padding: 18px; }
.admin-key-card label { display: block; margin-bottom: 8px; font-weight: 850; }
.admin-key-row { display: flex; gap: 8px; }
.admin-key-row input { flex: 1; min-width: 0; height: 46px; border: 1px solid var(--line); border-radius: 14px; padding: 0 14px; }
.admin-key-row button { width: 76px; border-radius: 14px; background: var(--primary); color: #fff; font-weight: 850; }
.admin-help { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.stat-card span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; }
.stat-card strong { display: block; margin-top: 7px; font-size: 25px; letter-spacing: -.05em; }
.admin-panel { margin-top: 14px; }
.panel-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-panel h2 { margin: 0 0 14px; font-size: 20px; letter-spacing: -.04em; }
.bar-row { margin-bottom: 16px; }
.bar-label { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; margin-bottom: 8px; }
.bar-label span { color: var(--muted); font-weight: 750; }
.bar-track { height: 12px; background: #eeeaf6; border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #7c5cff, #82d9b2); border-radius: inherit; }
.recent-list { display: grid; gap: 8px; }
.recent-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.recent-item span { color: var(--muted); font-size: 13px; }
.empty { color: var(--muted); font-weight: 750; }

@media (max-width: 360px) {
  .app-shell { padding-left: 12px; padding-right: 12px; }
  .hero-card, .question-screen, .result-screen { border-radius: 28px; padding-left: 16px; padding-right: 16px; }
  .question-title { font-size: 22px; }
  .option-card { font-size: 15px; }
}


.panel-desc {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.selected-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.member-picker {
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow: auto;
  padding: 2px 2px 8px;
}

.member-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(49, 39, 116, .06);
  cursor: pointer;
}

.member-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.member-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.member-main strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.member-main em {
  color: var(--primary-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.member-date {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.analysis-btn {
  width: 100%;
  min-height: 50px;
  margin: 14px 0 12px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(124, 92, 255, .26);
}

.analysis-btn:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.team-analysis {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(124, 92, 255, .18);
  background: linear-gradient(180deg, #fff, #fbf9ff);
  color: var(--ink);
  line-height: 1.65;
  font-size: 14px;
  font-weight: 700;
}

.team-analysis.empty {
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.analysis-kicker {
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.team-analysis h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.team-analysis p {
  margin: 8px 0;
}

.analysis-advice {
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff8e9;
  color: #5c3a10;
}

.analysis-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 8px;
}

.analysis-chip {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2edff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.analysis-top {
  color: var(--muted);
  font-size: 13px;
}


.analysis-members {
  margin-top: 10px;
  border-top: 1px dashed var(--line);
  padding-top: 8px;
}

.analysis-members summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.analysis-members ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}

.analysis-members li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(22, 24, 76, 0.06);
}

.analysis-members li span {
  color: var(--primary-dark);
  font-weight: 900;
}

@media (max-width: 640px) {
  .member-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .member-date {
    grid-column: 2;
  }
}

.praise-vote-btn {
  margin-top: 10px;
}

.praise-screen, .complete-screen {
  text-align: center;
}

.praise-card, .complete-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
}

.praise-card h2, .complete-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -.055em;
  color: var(--ink);
}

.praise-desc {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  word-break: keep-all;
}

.praise-options {
  display: grid;
  gap: 9px;
  margin: 18px 0 12px;
  text-align: left;
}

.praise-option {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 11px 13px;
  border-radius: 19px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 10px 22px rgba(49, 39, 116, .08);
  cursor: pointer;
}

.praise-option:has(input:checked) {
  border-color: var(--primary);
  background: #fbf9ff;
}

.praise-option.disabled {
  opacity: .56;
  cursor: not-allowed;
}

.praise-option input {
  width: 19px;
  height: 19px;
  accent-color: var(--primary);
}

.praise-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ecff;
  font-size: 20px;
}

.praise-name {
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.praise-option em {
  grid-column: 3;
  color: #e5484d;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.praise-help {
  min-height: 20px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.praise-help.error, .admin-help.error {
  color: #e5484d;
}

.praise-empty {
  margin: 0;
  padding: 18px 12px;
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.complete-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 28px;
  background: var(--primary-soft);
  font-size: 38px;
}

.complete-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
  word-break: keep-all;
}

.praise-admin-add {
  display: flex;
  gap: 8px;
  margin: 14px 0 4px;
}

.praise-admin-add input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  font-weight: 800;
}

.praise-admin-add button {
  width: 76px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.praise-admin-add button:disabled {
  opacity: .52;
  cursor: not-allowed;
}

.praise-candidate-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.praise-candidate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.praise-candidate-item strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.praise-candidate-item button {
  min-width: 54px;
  height: 32px;
  border-radius: 12px;
  background: #fff0f0;
  color: #d43131;
  font-size: 12px;
  font-weight: 900;
}

.praise-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.praise-result-head h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.03em;
}

.praise-result-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.praise-result-list {
  display: grid;
  gap: 10px;
}

.praise-result-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.praise-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.praise-result-main {
  min-width: 0;
}

.praise-result-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.praise-result-label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.praise-recent {
  margin-top: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}

.praise-recent summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.praise-recent .recent-list {
  margin-top: 10px;
}

/* 칭찬 항목 선택 UI */
.praise-option-with-reason {
  display: block;
  padding: 12px;
}

.praise-option-main {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.praise-option-with-reason .reason-panel {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f7f3ff;
}

.praise-option-with-reason.selected .reason-panel,
.praise-option-with-reason:has(input:checked) .reason-panel {
  display: block;
}

.reason-panel p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.reason-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.reason-chip {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #e1d8ff;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.reason-chip.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.praise-reason-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.praise-reason-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f7f3ff;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
}
