.check-layout {
  display: grid;
  gap: 28px;
}

.check-support {
  margin-top: 0;
}

.survey-card__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(248, 241, 234, 0.92);
  color: var(--rosewood-dark);
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(169, 104, 93, 0.1);
  margin-top: 24px;
}

.progress-bar__fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--rosewood) 0%, #c68f7e 100%);
  transition: width 240ms ease;
}

.answer-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.answer-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.answer-button:hover,
.answer-button:focus-visible,
.answer-button.is-selected {
  border-color: rgba(169, 104, 93, 0.42);
  background: rgba(252, 243, 236, 0.96);
  transform: translateY(-1px);
}

.survey-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.result-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.result-card {
  scroll-margin-top: 120px;
}

.result-card h2 {
  font-family: "Marcellus", "Noto Sans KR", serif;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
}

.result-card li + li {
  margin-top: 8px;
}

.result-panel {
  margin-top: 20px;
}

.is-hidden {
  display: none;
}

@media (max-width: 720px) {
  .survey-card__header {
    flex-direction: column;
  }

  .survey-actions {
    flex-direction: column;
  }

  .survey-actions .button {
    width: 100%;
  }
}
