/* =========================================================
   삼진금속 LOCATION PAGE (location.css)
========================================================= */

.location-page {
    padding-top: 90px;
    background-color: #fdfdfd;
}

/* 1. 서브 히어로 배너 */
.location-hero {
    background: #111111;
    color: #ffffff;
    padding: 35px 20px;
    text-align: center;
}

.location-hero .hero-inner h1 {
    font-size: 13px;
    letter-spacing: 3px;
    color: #c59b27;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.location-hero .hero-inner p {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

/* 2. 메인 컨테이너 */
.location-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.location-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.location-header .sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c59b27;
    margin-bottom: 8px;
}

.location-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 10px;
    word-break: keep-all;
}

.location-header h2 strong {
    color: #c59b27;
}

.location-header .location-desc {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

/* 3. 지도 영역 (카카오 약도 반응형 스타일 보정) */
.map-wrapper {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeeef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.map-wrapper .root_daum_roughmap {
    width: 100% !important;
}

.map-wrapper .root_daum_roughmap .wrap_map {
    height: 360px !important;
}

/* 4. 정보 그리드 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #eaeeef;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

/* 5. 모바일 반응형 */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-page {
        padding-top: 60px;
    }

    .location-hero {
        padding: 25px 20px;
    }

    .location-hero .hero-inner p {
        font-size: 20px;
    }

    .location-container {
        padding: 40px 15px;
    }

    .location-header h2 {
        font-size: 22px;
    }

    .map-wrapper .root_daum_roughmap .wrap_map {
        height: 300px !important;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}