/* 오시는길 */
#location_container {
  width:100%;
  margin-top:52px;
}
.location_info {
  width:100%;
  display:flex;
  justify-content: flex-start;
  gap:32px;
  font-style:normal;
}
.lo_address {
  display:flex;
}
.lo_icon {
  width:60px;
  height:60px;
  border-radius: 12px;
  background-color: var(--color-f8);
  border:solid 1px var(--color-e8);

  display:flex;
  justify-content: center;
  align-items: center;
}
.lo_text {
  padding:18px 24px;
  border-radius: 12px;
  background-color:white;
  border:solid 1px var(--color-e8);
}
.lo_text p {
  font-weight: 500;
}
.lo_text a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.lo_text a:hover {
  text-decoration: underline;
}
#location_container iframe {
  border-radius: 20px;
  margin-top:24px;
}

/* 태블릿 (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #location_container {
    margin-top: 40px !important;
    padding: 0 20px !important;
  }
  
  .location_info {
    gap: 24px !important;
  }
  
  .lo_icon {
    width: 56px !important;
    height: 56px !important;
  }
  
  .lo_text {
    padding: 16px 20px !important;
  }
  
  .lo_text p {
    font-size: 15px !important;
  }
  
  #location_container iframe {
    height: 480px !important;
    margin-top: 20px !important;
  }
}

/* 태블릿 이하 (768px 이하) */
@media screen and (max-width: 768px) {
  #location_container {
    margin-top: 32px !important;
    padding: 0 16px !important;
  }
  
  .location_info {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .lo_address {
    width: 100% !important;
  }
  
  .lo_icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
  }
  
  .lo_text {
    padding: 14px 18px !important;
    flex: 1 !important;
    margin-left: 12px !important;
  }
  
  .lo_text p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  
  .lo_text a {
    color: #0066cc !important;
  }
  
  .lo_text a:active {
    color: #004499 !important;
  }
  
  #location_container iframe {
    height: 400px !important;
    margin-top: 16px !important;
    border-radius: 16px !important;
  }
}

/* 모바일 (375px 이하) */
@media screen and (max-width: 375px) {
  #location_container {
    margin-top: 24px !important;
    padding: 0 12px !important;
  }
  
  .location_info {
    gap: 12px !important;
  }
  
  .lo_icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
  }
  
  .lo_icon img {
    width: 20px !important;
    height: 20px !important;
  }
  
  .lo_text {
    padding: 12px 16px !important;
    margin-left: 8px !important;
  }
  
  .lo_text p {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  
  .lo_text a {
    color: #0066cc !important;
    font-weight: 600 !important;
  }
  
  .lo_text a:active {
    color: #004499 !important;
  }
  
  #location_container iframe {
    height: 300px !important;
    margin-top: 12px !important;
    border-radius: 12px !important;
  }
}