/* 지도 스타일 */
#map {
    display: block;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 50px;
}

/* 돋보기 스타일 */
#magnifier {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 8px #0003;
    display: none;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 100;
}

#magnifier img {
    position: absolute;
    transform-origin: 0 0;
    image-rendering: auto;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    #magnifier {
        display: none !important;
    }

    #map {
        margin: 0 10px 30px;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
}

/* 헤더 텍스트 */
.location-header {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #0066FF, #33CCFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 카드 컨테이너 */
.location-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 리스트 아이템 */
.location-card .list-group-item {
    border: none;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #333;
}

.location-card .list-group-item+.list-group-item {
    border-top: 1px solid #eee;
}

/* 아이콘 스타일 */
.location-card .list-group-item i {
    font-size: 1.3rem;
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 3px;
}

/* 부가 설명 */
.location-card .list-group-item small {
    display: block;
    color: #666;
    margin-top: 0.35rem;
    font-size: 0.875rem;
}

/* 모바일 카드 스타일 */
@media (max-width: 768px) {
    .location-header {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .location-card {
        margin: 0 1rem 2rem;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }

    .location-card .list-group-item {
        padding: 0.85rem;
        font-size: 0.95rem;
        line-height: 1.35;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .location-card .list-group-item i {
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .location-card .list-group-item small {
        font-size: 1rem;
        margin-top: 0.5rem;
        flex-basis: 100%;
        padding-left: 30px;
    }
}