/* ===== ABOUT ===== */
.abo {
  background: #fff;
  padding: 120px 0 160px;
  margin-top: 5%;
}

.abo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 텍스트 */
.abo__head {
  max-width: 720px;
  margin-bottom: 60px;
}

.abo__title {
  font-size: 52px;
  font-weight: 700;
  color: #3db6c6;
  margin-bottom: 14px;
}

.abo__desc {
  font-size: 19px;
  line-height: 1.6;
  color: #666;
}

/* 카드 (절대 고정) */
.abo-card {
  position: relative;
  width: 1800px;
  height: 520px;
  overflow: hidden;
  border-radius: 40px;
  transform: none !important;
  will-change: auto;
  margin-left: auto;
  margin-right: -25%;
}

/* 이미지 래퍼 */
.abo-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 이벤트 차단 */
}

/* 🔥 이미지: GPU 레이어로 분리 */
.abo-img img {
  display: block;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center 22%;

  transform: translate3d(0, 0, 0);
  /* ⬅️ GPU 분리 핵심 */
  will-change: transform;
}

/* 반응형 */
@media (max-width:1024px) {
  .abo-card {
    height: 360px;
    border-radius: 28px;
  }
}

@media (max-width:768px) {
  .abo {
    padding: 80px 0 120px;
  }

  .abo__inner {
    padding: 0 20px;
  }

  .abo__title {
    font-size: 32px;
  }

  .abo-card {
    height: 300px;
    border-radius: 22px;
  }
}

/* ===== MOBILE RESET (이미지 안 보이던 문제 해결) ===== */
@media (max-width: 768px) {

  .abo-card {
    width: 100%;
    /* PC 고정 폭 제거 */
    max-width: 100%;
    height: 260px;

    margin-left: 0;
    margin-right: 0;
    /* 음수 마진 제거 */

    border-radius: 18px;
  }

  /* 이미지 영역 중앙 정렬 */
  .abo-img {
    inset: 0;
    background-position: center center !important;
  }
}





/* ===============================
   LOCATION SECTION (시안 그대로)
================================ */

.location-sec {
  padding: 140px 0;
  background: #fff;
}

.location-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 70px;
}

/* TITLE */
.location-title {
  font-size: 52px;
  font-weight: 800;
  color: #35b7c6;
  margin-bottom: 55px;
}

/* CARD */
.location-card {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
}

/* MAP */
.location-map iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
}

/* INFO BAR */
.location-info {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 38px 70px;
  border-bottom: 1px solid #eee;
}

/* LEFT TITLE */
.location-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

/* BUTTON */
.location-btn {
  background: #5b86ff;
  color: #fff;
  padding: 16px 38px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.location-btn:hover {
  opacity: 0.85;
}

/* META */
.location-meta {
  padding: 34px 70px 45px;
}

.meta-row {
  display: flex;
  gap: 30px;
  margin-bottom: 14px;
}

.meta-label {
  width: 90px;
  font-weight: 700;
  color: #111;
}

.meta-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .location-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 40px;
  }

  .location-meta {
    padding: 30px 40px;
  }
}

@media (max-width: 600px) {
  .location-inner {
    padding: 0 18px;
  }

  .location-title {
    font-size: 38px;
  }

  .location-map iframe {
    height: 320px;
  }

  .meta-row {
    flex-direction: column;
    gap: 6px;
  }

  .meta-label {
    width: auto;
  }
}