/* =========================================
   BUSINESS.CSS — 사업안내 페이지 전용
   ========================================= */

/* ── 입지환경 맵 이미지 ──────────────────── */
.location-map {
  display: block;
  width: 100%;
  max-width: var(--width-content, 1200px);
  margin: 0 auto 4px;
  cursor: crosshair;
}

.location-panel {
  display: block;
  width: 100%;
  max-width: var(--width-content, 1200px);
  margin: 0 auto 48px;
}

.location-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 돋보기 ──────────────────────────────── */
#magnifier {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  display: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-color: #fff;
  z-index: 100;
}

/* ── 반응형 ──────────────────────────────── */
@media (max-width: 768px) {
  #magnifier {
    display: none !important;
  }

  .location-map {
    margin: 0 0 8px;
  }
}
