.mapwrap {
    width: 100%;
    height: min(52vh, 500px);
    max-height: 500px;
    min-height: 280px;
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--prim-color);
    border-radius: 12px;
    background: #eef4f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mapframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    background: #eef4f3;
}

@media (max-width: 600px) {
    .mapwrap {
        height: 42vh;
        min-height: 260px;
        max-height: none;
    }
}