/* Studio Profile V2 -- Embedded Map */

.sp-map-section {
    padding: 0 0 var(--space-12);
}

.sp-map-container {
    width: 100%;
    height: var(--sp-map-height);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
}

/* MapLibre GL container overrides */
.sp-map-container .maplibregl-map {
    width: 100%;
    height: 100%;
}

.sp-map-container .maplibregl-ctrl-bottom-left,
.sp-map-container .maplibregl-ctrl-bottom-right {
    display: none;
}

/* Get Directions link below map */
.sp-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-brand-accent);
    text-decoration: none;
    font-weight: 500;
}

.sp-map-directions:hover {
    text-decoration: underline;
}

.sp-map-directions svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .sp-map-container {
        height: 400px;
    }
}
