/* ===========================
   RESULT 결과 확인 화면
   =========================== */

.result-screen {
  background: #ffffff;
}

/* 메인 레이아웃 */
.result-main {
  padding: 5.15cqw;
  gap: 6.01cqw;
}

/* 타이틀 */
.result-title {
  font-weight: 700;
  font-size: 5.15cqw;
  line-height: 6.87cqw;
  text-align: center;
  color: #222222;
  margin: 0;
}

/* 콘텐츠 (이미지 + 버튼) */
.result-content {
  gap: 5.15cqw;
}

/* 이미지 프레임 */
.result-frame {
  background: #222222;
  border-radius: 4.29cqw;
  padding: 1.72cqw;
  box-sizing: border-box;
}

/* 이미지 프레임 내부 */
.result-frame-inner {
  width: 100%;
  height: 100%;
  background: #222222;
  border-radius: 2.58cqw;
  overflow: hidden;
}

/* 결과 이미지 */
.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 버튼 컨테이너 */
.result-buttons {
  display: flex;
  gap: 5.15cqw;
  flex-shrink: 0;
}

/* 버튼 공통 */
.result-btn {
  flex: 1;
  padding: 5.15cqw 6.87cqw;
  background: #222222;
  border-radius: 4.29cqw;
  border: none;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 5.15cqw;
  line-height: 6.22cqw;
  text-align: center;
  color: #ffffff;
  transition: transform 0.2s;
}
.result-btn:active {
  transform: scale(0.95);
}
.result-btn--secondary {
  background: #666666;
}
