/* Google Maps — Sidebar Zone (narrow, tall).
 * Vertical stack: info 30% top, iframe 70% bottom, double-line divider.
 * Iframe fills its entire allotted slot; content clipped if needed.
 */

.gm-sidebar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.gm-sidebar-info {
    width: 100%;
    height: 30%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3%;
    text-align: center;
}
.gm-sidebar-title {
    font-size: 4.8cqmin !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
    color: var(--text, #fff) !important;
    margin-bottom: 1.5cqmin !important;
    line-height: 1.2 !important;
}
.gm-sidebar-desc {
    font-size: 2.2cqmin !important;
    color: var(--text, #fff) !important;
    opacity: 0.75;
    margin-bottom: 2cqmin !important;
    line-height: 1.5 !important;
}
.gm-sidebar-addr {
    font-size: 4cqmin !important;
    font-family: 'Roboto', sans-serif !important;
    color: var(--text, #fff) !important;
    opacity: 0.6;
    line-height: 1.3 !important;
}
.gm-sidebar-addr i {
    color: var(--accent, #ccc) !important;
    margin-inline-end: 0.4cqmin;
}

.gm-sidebar-iframe-wrap {
    width: 100%;
    height: 70%;
    overflow: hidden;
    position: relative;
    border-top: 8px double var(--accent, #ccc);
    box-sizing: border-box;
}
.gm-sidebar-iframe-wrap iframe {
    position: absolute !important;
    top: -12.5% !important;
    left: -12.5% !important;
    width: 125% !important;
    height: 125% !important;
    border: none !important;
    border-radius: 0 !important;
    display: block !important;
}
