/* =========================================================
   업종변경 3,000만원대 / 기물 지원 (changeover)
   ========================================================= */
#changeover {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 10px;
  background-color: #3d2614;

  background: linear-gradient(#3d2614d3, #3d2614d3),
    url(../img/changeover/bg.jpg) 50% / cover no-repeat;

  background-size: cover !important;
  background-position: center center !important;
  box-sizing: border-box;
}

/* 우측에서 살짝 걸치는 장식 사진 */
#changeover .changeover-deco {
  position: absolute;
  max-width: 646px;
  width: 45%;
  height: auto;
  /* height: 430px; */
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

#changeover .changeover-deco-first {
  right: -90px;
  bottom: -40px;
}

#changeover .changeover-deco-second {
  right: -420px;
  bottom: -20px;
}

#changeover .changeover-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- 제목 (공통 tit-wrap / st-tit / st-sub-tit 색·폰트만 오버라이드) ---------- */
#changeover .tit-wrap {
  gap: 0;
}

#changeover .changeover-bar {
  display: block;
  width: 64px;
  height: 2px;
  margin-bottom: 20px;
  background: #e3ddd7;
}

#changeover .st-sub-tit {
  font-family: 'Paperlogy', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: normal;
  color: #e3ddd7;
}

#changeover .st-tit {
  font-family: 'Paperlogy', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: normal;
  color: #e3ddd7;
}

/* 강조: 3,000만원대 (레드 하이라이트 + 흰 글자) */
#changeover .changeover-highlight {
  display: inline-block;
  padding: 0 6px;
  background: #e24534;
  color: #fff;
}

#changeover .changeover-note {
  margin-top: 20px;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #e3ddd7;
  text-align: center;
}

/* ---------- 기물 지원 카드 ---------- */
#changeover .changeover-support {
  position: relative;
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

#changeover .changeover-support-media {
  position: relative;
  width: 50%;
  max-width: 601px;
  aspect-ratio: 601 / 500;
  border-radius: 12px;
  background: #e3ddd7;
  flex-shrink: 0;
}

#changeover .changeover-support-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

#changeover .changeover-support-text {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

#changeover .changeover-support-tit {
  font-family: 'Paperlogy', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
}

/* 제목 줄 (한 개씩 fade-up 순차) */
#changeover .changeover-support-line {
  display: block;
}

#changeover .changeover-support-tag {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 12px;
  background: #e24534;
  color: #ffe72f;
  font-size: 48px;
  line-height: 57.6px;
  vertical-align: middle;
}

#changeover .changeover-support-note {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #e3ddd7;
}

/* ---------- 선착순 씰 뱃지 ---------- */
#changeover .changeover-seal {
  position: absolute;
  left: -60px;
  top: -35px;
  width: 200px;
  height: 200px;
  z-index: 3;
  filter: drop-shadow(3.33px 3.33px 13.33px rgba(0, 0, 0, 0.2));
  transform-origin: center center;
  animation: changeover-seal-zoom 1.4s ease-in-out infinite;
}

/* 씰 줌 120% ↔ 100% 반복 */
@keyframes changeover-seal-zoom {
  0% { transform: scale(1.2); }
  50% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

#changeover .changeover-seal-bg {
  width: 100%;
  height: 100%;
  display: block;
}

#changeover .changeover-seal-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Paperlogy', sans-serif;
  text-align: center;
  text-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

#changeover .changeover-seal-line {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

#changeover .changeover-seal-point {
  color: #ffe72f;
  font-size: 40px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 48px;
}

/* =========================================================
   반응형 — 768px 이하 (태블릿) : 데스크톱값에서 적당히 축소 + 세로 스택
   ========================================================= */
@media (max-width: 768px) {
  #changeover {
    padding: 90px 24px;
  }
  /* 장식 사진 숨김 (모바일 오버플로우 방지) */
  #changeover .changeover-deco {
    display: none;
  }

  /* 제목 */
  #changeover .changeover-bar {
    margin-bottom: 18px;
  }
  #changeover .st-sub-tit {
    font-size: 24px;
  }
  #changeover .st-tit {
    font-size: 46px;
  }
  #changeover .changeover-note {
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  /* 기물 지원 : 세로 스택 */
  #changeover .changeover-support {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 70px;
  }
  #changeover .changeover-support-media {
    width: 100%;
    max-width: 480px;
  }
  #changeover .changeover-support-text {
    padding: 24px 0;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  #changeover .changeover-support-tit {
    font-size: 30px;
    line-height: 38px;
  }
  #changeover .changeover-support-tag {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 8px;
  }
  #changeover .changeover-support-note {
    font-size: 14px;
    text-align: center;
  }

  /* 씰 : 미디어 좌상단 안쪽으로 */
  #changeover .changeover-seal {
    left: 30px;
    top: -35px;
    width: 150px;
    height: 150px;
  }
  #changeover .changeover-seal-line {
    font-size: 24px;
    line-height: 29px;
  }
  #changeover .changeover-seal-point {
    font-size: 30px;
    line-height: 36px;
  }
}

/* =========================================================
   반응형 — 480px 이하 (모바일) : 시안 최종 사이즈
   (세로 스택·씰 위치 등 레이아웃은 768px 규칙에서 상속)
   ========================================================= */
@media (max-width: 480px) {
  #changeover {
    padding: 80px 16px;
  }

  /* 제목 */
  #changeover .changeover-bar {
    margin-bottom: 16px;
  }
  #changeover .st-sub-tit {
    font-size: 18px;
    line-height: 25.2px;
  }
  #changeover .st-tit {
    font-size: 30px;
    line-height: 39px;
  }
  #changeover .changeover-note {
    margin-top: 12px;
    font-size: 12px;
    line-height: 16.8px;
  }

  /* 기물 지원 */
  #changeover .changeover-support {
    gap: 20px;
    margin-top: 60px;
  }
  #changeover .changeover-support-media {
    max-width: 330px;
  }
  #changeover .changeover-support-text {
    padding: 20px 0;
    gap: 20px;
  }
  #changeover .changeover-support-tit {
    font-size: 20px;
    line-height: 24px;
  }
  #changeover .changeover-support-tag {
    font-size: 24px;
    line-height: 28.8px;
    padding: 3px 5px;
    margin-bottom: 4px;
  }
  #changeover .changeover-support-note {
    font-size: 12px;
    line-height: 16.8px;
  }

  /* 씰 : 시안 최종(100px) */
  #changeover .changeover-seal {
    left: 30px;
    top: -24px;
    width: 100px;
    height: 100px;
  }
  #changeover .changeover-seal-line {
    font-size: 16px;
    line-height: 19.2px;
  }
  #changeover .changeover-seal-point {
    font-size: 20px;
    line-height: 24px;
  }
}
