.psam-location-grid {
    display:grid;
    gap:20px;
}

.psam-location-grid.psam-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.psam-location-grid.psam-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.psam-location-grid.psam-cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }

@media (max-width:768px) {
    .psam-location-grid { grid-template-columns:1fr !important; }
}

.psam-location-card {
    background:#fff;
    border:1px solid #e5e5e5;
    padding:16px;
    border-radius:8px;
    box-shadow:0 2px 5px rgba(0,0,0,.03);
}

.psam-location-title {
    margin-top:0;
    font-size:1.1rem;
}

.psam-location-card .psam-btn-primary {
    display:inline-block;
    margin-top:8px;
    background:#2271b1;
    color:#fff;
    padding:6px 14px;
    border-radius:999px;
    text-decoration:none;
}

.psam-map-container {
    border-radius:8px;
    overflow:hidden;
    border:1px solid #ddd;
    margin:15px 0;
}
