/* business-location-picker.css — prefix: blp-
   Google Places autocomplete + draggable map picker for business/guide profile. */

.blp-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Map container ────────────────────────────────────────────────────────── */
.blp-map {
    width: 100%;
    height: 15rem;
    border-radius: 0.875rem;
    border: 1px solid var(--antologa-light-gray);
    overflow: hidden;
}

/* ── Coordinate readout ───────────────────────────────────────────────────── */
.blp-coords {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--antologa-gray);
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ── Address fields grid ──────────────────────────────────────────────────── */
.blp-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.blp-fields--full {
    grid-column: 1 / -1;
}

/* ── Helper text below search ─────────────────────────────────────────────── */
.blp-hint {
    font-size: 0.75rem;
    color: var(--antologa-gray);
    margin: -0.5rem 0 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 48rem) {
    .blp-fields {
        grid-template-columns: 1fr;
    }

    .blp-map {
        height: 12rem;
    }
}
