/* =========================
   큰 이미지 프레임 (풀스크린)
========================= */
.frame_profit{
  position:relative;
  width:100vw;
  min-height:140vh;
  overflow:hidden;
  border-radius:0;
  box-shadow:none;
}

/* 배경 이미지 */
.frame_bg_profit{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   위에 겹치는 3개 이미지 (좌표 배치)
========================= */
.frame_overlay_profit{
  position:relative;
  width:100%;
  min-height:100vh;
}

/* 공통: 안 잘리게 + 붙어있는 느낌 + hover 없음 */
.frame_overlay_profit img{
  position:absolute;        /* ✅ left/bottom 먹게 */
  height:auto;              /* ✅ 100% 금지 (잘림 원인) */
  object-fit:contain;       /* ✅ 안 잘리게 */
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);

  box-shadow:none;
  opacity:0.98;
  filter:brightness(0.97);

  transform:none !important;
  transition:none !important;
}

/* 1번 이미지 오리 이미지*/
.frame_overlay_profit img:nth-child(1){
  right:10%;
  top:62%;
  width:32%;
}

/* 2번 이미지  영수증 이미지*/
.frame_overlay_profit img:nth-child(2){
  left:10%;
  top:54%;
  width:40%;
}

/* 3번(타이틀) 이미지 글씨 이미지*/
.frame_overlay_profit img:nth-child(3){
  right:25%;
  top:14%;
  width:50%;
}

/* 혹시 남아있는 hover 효과 완전 차단 */
.frame_overlay_profit img:hover{
  transform:none !important;
  transition:none !important;
}