/* 위치 섹션 */
.location {
    padding: 1rem 0;
}

/* 지도 섹션 */
.map-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-primary);

    border-top: 2px solid var(--gray-border);
    padding-top: 2rem;
}

.map-container {
    width: 100%;
    height: 600px;
    border: 1px solid var(--black);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.map-link {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* 주소 및 연락처 */
.address-section {
    
    border-top: 2px solid var(--gray-border);
    padding-top: 3rem;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.address-card {
    text-align: center;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 12px;
    transition: var(--transition);
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.address-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    color: #666666;
    border-bottom: 2px solid var(--gray-border);
}


.address-main {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.address-sub {
    font-size: 0.875rem;
    line-height: 1.1;
    color: var(--gray);
}


/* 반응형 */
@media (max-width: 1024px) {
    .address-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }

    .map-links {
        flex-direction: column;
    }

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

    .address-card {
        padding: 1.5rem;
    }
}