/* === 전역 기본 === */
body {
  margin: 0;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === 스코프: 이 페이지 전용 래퍼 === */
.wje-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding-inline: 0;
}

/* 에디터가 <p>/<figure>/<a>로 감싸도 항상 중앙 정렬 */
.wje-wrap img,
.wje-wrap p>img,
.wje-wrap figure>img,
.wje-wrap a>img {
  margin: 16px auto !important;
  /* 중앙 정렬 고정 */
}

/* 기본 이미지 크기 규칙 */
.wje-wrap img {
  width: 100%;
  height: auto;
}

/* 특정 사이즈 프리셋 */
.wje-wrap .img-640 {
  max-width: 700px;
  border-radius: 8px;
}

/* 필요 시 640→700으로 조정 완료 */
.wje-wrap .img-80 {
  width: 80% !important;
  max-width: 512px;
}

/* 테두리/그림자 제거용(깨끗한 이미지) */
.wje-wrap .clean {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* 지도 프레임 */
.wje-wrap .map-frame {
  display: block;
  width: 100%;
  max-width: 640px;
  height: 60vh;
  min-height: 300px;
  margin: 30px auto !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

/* 링크 이미지 hover 확대 */
.airtel-link img.img-80 {
  transition: transform 0.25s ease;
}

.airtel-link:hover img.img-80,
.airtel-link:focus img.img-80 {
  transform: scale(1.03);
}

/* === 반응형 === */
@media (max-width: 768px) {
  .wje-wrap {
    width: 90%;
    max-width: none;
  }
}