/**********************************************************************
 LOCATION SECTION
**********************************************************************/

.loc-section {
    padding: 80px 0;
}

/* CARD CONTAINER */

.loc-card-container {
    display: flex;
    background: #1c1a18;
    color: #fff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.05);
}

/* MAP */

.loc-map-wrapper {
    flex: 1.2;
    position: relative;
    min-height: 420px;
}

.loc-google-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0.2) contrast(1.05);
}

/* INFO PANEL */

.loc-info-panel {
    flex: 0.8;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.03) 0%,
        rgba(255,255,255,0) 100%
    );
    position: relative;
}

/* STUDIO IMAGE BADGE */

.loc-studio-badge-img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 104px;
    height: 104px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 16px 34px rgba(0,0,0,0.38);
    backdrop-filter: blur(2px);
}

/* TITLE */

.loc-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ADDRESS */

.loc-address-block {
    margin-bottom: 30px;
}

.loc-address-street {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.loc-address-city {
    opacity: 0.7;
    font-size: 1rem;
}

/* TRANSPORT */

.loc-transport-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-transport-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.loc-station-name {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.loc-line-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.loc-badge {
    min-width: 32px;
    height: 20px;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.loc-badge-u {
    background: #0055a3;
}

.loc-badge-s {
    background: #008e4e;
    border-radius: 12px;
}

/* GOOGLE MAPS BUTTON */

.loc-google-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.loc-google-maps-btn:hover {
    color: var(--white);
    transform: translateX(5px);
}

/**********************************************************************
 TABLET
**********************************************************************/

@media (max-width: 900px) {

    .loc-card-container {
        flex-direction: column;
        border-radius: 28px;
    }

    .loc-map-wrapper {
        min-height: 260px;
    }

    .loc-google-map-iframe {
        height: 260px;
    }

    .loc-info-panel {
        padding: 32px 26px 36px 26px;
    }

    .loc-studio-badge-img {
        width: 70px;
        height: 70px;
        top: 20px;
        right: 20px;
    }
}

/**********************************************************************
 MOBILE
**********************************************************************/

@media (max-width: 600px) {

    .loc-section {
        padding: 40px 18px 50px 18px;
    }

    .loc-map-wrapper {
        min-height: 220px;
    }

    .loc-google-map-iframe {
        height: 220px;
    }

    .loc-info-panel {
        padding: 26px 22px 30px 22px;
    }

    .loc-title {
        font-size: 1.5rem;
    }

    .loc-address-street {
        font-size: 1.05rem;
    }

    .loc-badge {
        min-width: 28px;
        height: 18px;
        font-size: 0.65rem;
    }
}