/* Process Section Component */
.process-section {
  width: 100%;
  background-color: #ececec;
  padding: var(--spacing-2xl) 0;
  min-height: auto; /* 반응형 적용 - desktop.css에서 관리 */
}

/* 데스크탑 Step 컨테이너 (기본 숨김, 모바일용) */
.process-section__desktop-steps {
  display: none;
}

/* 모바일 요소 (기본 표시) */
.process-section__mobile-image,
.process-section__mobile-slider,
.process-section__mobile-step {
  display: block;
}

.process-section__container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
}

.process-section__title {
  font-family: var(--font-pretendard);
  font-weight: 500; /* 기본값, 데스크탑에서 700으로 오버라이드 */
  font-size: 40px; /* 기본값, 데스크탑에서 44px로 오버라이드 */
  line-height: 47.734375px;
  letter-spacing: -0.8px;
  color: #1c1c1e;
  margin: 0 0 88px 0;
  max-width: 729px;
}

.process-section__intro {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 18px; /* 기본값, 데스크탑에서 28px로 오버라이드 */
  line-height: 25.2px;
  letter-spacing: -0.36px;
  color: #1a1d21;
  text-align: center;
  margin: 0;
}
