@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700;900&display=swap');

#ctt{margin:0;padding:0;background:transparent}
#ctt header h1{position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con{padding:0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}

/* ================================================
   오시는 길
   ================================================ */
.loc-page{
  max-width:1536px;
  margin:0 auto;
  padding:0;
  font-family:'Noto Sans KR','Malgun Gothic',sans-serif;
  color:#333;
}

/* 상단 타이틀 */
.loc-header{
  text-align:center;
  padding:60px 0 50px;
}
.loc-header .loc-sub{
  font-size:16px;
  color:#2d86d9;
  font-weight:600;
  letter-spacing:.1em;
  margin-bottom:8px;
}
.loc-header .loc-h1{
  font-family:'Noto Serif KR',serif;
  font-size:42px;
  font-weight:900;
  color:#0f172a;
  letter-spacing:-.04em;
  margin:0 0 24px;
}
.loc-header .loc-slogan{
  font-size:20px;
  color:#475569;
  line-height:1.7;
  font-weight:500;
}

/* 지도 영역 */
.loc-map{
  width:100%;
  height:500px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.10);
  margin-bottom:50px;
}
.loc-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* 정보 카드 그리드 */
.loc-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:60px;
}
.loc-info-card{
  background:#f8fafc;
  border:1px solid #e8ecf1;
  border-radius:16px;
  padding:36px 32px;
  text-align:center;
  transition:transform .2s,box-shadow .2s;
}
.loc-info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.08);
}
.loc-info-icon{
  width:100px;
  height:100px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.loc-info-icon img{
  width:100px;
  height:100px;
  object-fit:contain;
  display:block;
}
.loc-info-label{
  font-size:13px;
  color:#94a3b8;
  font-weight:700;
  letter-spacing:.05em;
  margin-bottom:8px;
  text-transform:uppercase;
}
.loc-info-value{
  font-size:18px;
  font-weight:800;
  color:#0f172a;
  line-height:1.5;
  word-break:keep-all;
}
.loc-info-value a{
  color:#0f172a;
  text-decoration:none;
}
.loc-info-value a:hover{
  color:#2d86d9;
}
.loc-info-note{
  font-size:13px;
  color:#94a3b8;
  margin-top:6px;
  font-weight:500;
}

/* 교통안내 */
.loc-transport{
  background:#f3f5f7;
  border-radius:16px;
  padding:48px 50px;
  margin-bottom:40px;
}
.loc-transport h3{
  font-family:'Noto Serif KR',serif;
  font-size:24px;
  font-weight:900;
  color:#0f172a;
  margin:0 0 28px;
  letter-spacing:-.03em;
}
.loc-transport-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.loc-transport-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.transport-badge{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:32px;
  padding:0 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  color:#fff;
  white-space:nowrap;
}
.transport-badge.badge-subway{background:#2d86d9}
.transport-badge.badge-bus{background:#10b981}
.transport-badge.badge-car{background:#f59e0b;color:#0b1220}
.transport-desc{
  font-size:15px;
  color:#475569;
  line-height:1.7;
  font-weight:600;
  padding-top:4px;
}
.transport-desc b{color:#0f172a}

/* 반응형 */
@media(max-width:1024px){
  .loc-info-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .loc-header{padding:40px 20px 30px}
  .loc-header .loc-h1{font-size:30px}
  .loc-header .loc-slogan{font-size:16px}
  .loc-map{height:350px;border-radius:12px;margin-bottom:36px}
  .loc-info-grid{grid-template-columns:1fr;gap:16px;margin-bottom:40px}
  .loc-info-card{padding:28px 24px}
  .loc-transport{padding:32px 24px;border-radius:12px}
  .loc-transport h3{font-size:20px}
}
