.entry__content>.pgi-map.alignfull {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.pgi-map {
    width: 100%;
	height: 100%;
    margin: 0;
    font-family: "Involve", system-ui, sans-serif;
}

.pgi-map__canvas {
    position: relative;
    width: var(--pgi-map-desktop-width, 100%);
    max-width: 100%;
    height: var(--pgi-map-desktop-height, 520px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--pgi-map-border-radius, 20px);
    background: #dfe7e7;
    isolation: isolate;
}

.wp-admin .pgi-map__canvas,
.block-editor-iframe__html .pgi-map__canvas
 {
	min-height: 500px;
}

.pgi-map__google {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pgi-map__notice {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: min(420px, calc(100% - 40px));
    margin: 0;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pgi-black);
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .pgi-map__canvas {
        width: var(--pgi-map-mobile-width, 100%);
        height: var(--pgi-map-mobile-height, 380px);
    }
}

@media (min-width: 769px) and (max-width: 1499px) {
    .pgi-map__canvas {
        max-height: 100%;
    }
}
