/**
 * Location Component Styles
 * 본사 오시는길 섹션
 */

.location {
    background: #FFFFFF;
    padding: 120px 0;
}

.location__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Map */
.location__map {
    width: 100%;
    height: 600px;
    position: relative;
}

.location__kakao-map {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px;
    overflow: hidden;
}

/* Right: Info */
.location__info {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    gap: 40px;
}

.location__title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    color: #0CC6E3;
    margin: 0;
}

.location__address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location__address-line {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
    color: #333333;
    margin: 0;
}

/* Contact Items */
.location__contact {
    display: flex;
    flex-direction: column;
}

.location__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.location__contact-icon {
    width: 16px;
    height: 16px;
    background: #0CA9C5;
    border-radius: 3px;
    flex-shrink: 0;
}

.location__contact-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.location__contact-label {
    font-size: 36px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    min-width: 120px;
}

.location__contact-value {
    font-size: 42px;
    font-weight: 700;
    color: #0CC6E3;
    margin: 0;
}

.location__contact-divider {
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

/* Tablet */
@media (max-width: 1024px) {
    .location {
        padding: 80px 0;
    }

    .location__container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }

    .location__map {
        height: 500px;
    }

    .location__info {
        gap: 32px;
    }

    .location__title {
        font-size: 50px;
    }

    .location__address-line {
        font-size: 22px;
    }

    .location__contact-icon {
        width: 14px;
        height: 14px;
    }

    .location__contact-label {
        font-size: 20px;
        min-width: 100px;
    }

    .location__contact-value {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .location {
        padding: 60px 0;
    }

    .location__container {
        padding: 0 24px;
        gap: 48px;
    }

    .location__map {
        height: 400px;
    }

    .location__info {
        gap: 28px;
    }

    .location__title {
        font-size: 38px;
    }

    .location__address-line {
        font-size: 18px;
    }

    .location__contact-item {
        padding: 20px 0;
    }

    .location__contact-icon {
        width: 12px;
        height: 12px;
    }

    .location__contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .location__contact-label {
        font-size: 18px;
        min-width: auto;
    }

    .location__contact-value {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .location {
        padding: 48px 0;
    }

    .location__container {
        padding: 0 16px;
        gap: 40px;
    }

    .location__map {
        height: 350px;
    }

    .location__title {
        font-size: 34px;
    }

    .location__address-line {
        font-size: 17px;
    }

    .location__contact-item {
        padding: 18px 0;
    }

    .location__contact-icon {
        width: 10px;
        height: 10px;
    }

    .location__contact-label {
        font-size: 17px;
    }

    .location__contact-value {
        font-size: 19px;
    }
}
