.location-page {
    padding: 80px 0;
}

.location-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* 페이지 헤더 */
.location-header {
    margin-bottom: 48px;
}

.location-eyebrow {
    margin: 0 0 16px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-title {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 400;
}

.location-description {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 24px;
}

/* 본문 */
.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* 지도 */
.location-map-area {
    min-width: 0;
}

.location-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f4f6;
}

.location-map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(#d1d5db 1px, transparent 1px),
        linear-gradient(90deg, #d1d5db 1px, transparent 1px);
    background-size: 40px 40px;
}

.location-map-road-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 32px;
    transform: translateY(-50%);
    background: #e5e7eb;
    opacity: 0.6;
}

.location-map-road-vertical {
    position: absolute;
    top: 0;
    left: 50%;
    width: 32px;
    height: 100%;
    transform: translateX(-50%);
    background: #e5e7eb;
    opacity: 0.6;
}

.location-map-pin-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.location-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #000000;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.location-map-pin svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.location-map-name {
    padding: 8px 16px;
    border-radius: 9999px;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.location-map-address {
    margin: 0;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.8);
    color: #6b7280;
    font-size: 12px;
    line-height: 16px;
}

.location-map-notice {
    margin: 8px 0 0;
    color: #9ca3af;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

/* 우측 정보 영역 */
.location-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-info-card {
    padding: 24px;
    border-radius: 16px;
    background: #f9fafb;
}

.location-card-title {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

/* 사무소 정보 */
.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #9ca3af;
}

.location-info-item > div {
    min-width: 0;
}

.location-info-label {
    margin: 0 0 2px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 16px;
}

.location-info-value {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 20px;
}

.location-info-sub {
    margin: 0;
    color: #9ca3af;
    font-size: 12px;
    line-height: 16px;
}

/* 교통 안내 */
.location-transport-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
}

.location-transport-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-transport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
}

.location-transport-icon svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.location-transport-icon-train {
    background: #22c55e;
}

.location-transport-icon-bus {
    background: #3b82f6;
}

.location-transport-icon-car {
    background: #4b5563;
}

.location-transport-title {
    margin: 0 0 2px;
    color: #1f2937;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.location-transport-description {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 19px;
}

/* 반응형 */
@media (min-width: 640px) {
    .location-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 768px) {
    .location-title {
        font-size: 48px;
        line-height: 48px;
    }

    .location-map {
        height: 460px;
    }
}

@media (min-width: 1024px) {
    .location-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .location-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .location-map-area {
        grid-column: span 2 / span 2;
    }
}