/* 오피스 위치 섹션 배경 */
.location-section {
    background-color: var(--dark);
    padding-bottom: 80px;
}

/* 제목 하단 라인 */
.title-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 15px;
}

/* 로케이션 카드 공통 */
.location-card {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

/* 카드 상단 강조 라인 (Primary Color) */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    opacity: 0.8;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

/* 아이콘 랩 */
.loc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-icon-wrap i {
    color: var(--primary);
    font-size: 1.25rem;
}

.loc-name {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.loc-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 구분선 */
.loc-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

/* 정보 텍스트 */
.loc-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.loc-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =================================================
   반응형 브레이크포인트 (style.css 기준)
   ================================================= */

/* 태블릿/모바일 (992px 미만) */
@media (max-width: 991.98px) {
    .location-card {
        padding: 25px;
    }

    .loc-name {
        font-size: 1.2rem;
    }
}

/* 모바일 (767px 이하) */
@media (max-width: 767px) {
    .location-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .loc-text {
        font-size: 0.95rem;
    }

    .loc-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .loc-icon-wrap i {
        font-size: 1rem;
    }
}