/* ============================================================
   Template: CLOSING
   발표 마지막 슬라이드. Cover와 톤은 맞추되 별도 컴포넌트로 분리
   (Cover는 "시작", Closing은 "마무리"라는 다른 역할이므로 클래스도 구분).
   ============================================================ */
.closing-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-content);
}

/* 마지막 페이지 전용: 시장/게이트 사진을 아주 희미하게 깔아 여운을 남김 */
.closing-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: var(--z-bg);
}

.closing-content .subtitle {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: var(--space-2);
}

.closing-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.closing-content .closing-message {
  font-size: 18px;
  color: #a0b2c6;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.closing-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.closing-contact strong {
  font-size: 16px;
  color: var(--color-white);
}

.closing-contact span {
  font-size: 13px;
  color: #a0b2c6;
}
