.map-grid {
display: flex;
gap: 25px;
flex-wrap: wrap;
}
.map-card {
flex: 1;
min-width: 350px;
border-radius: 0px;
overflow: hidden;
position: relative;
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
height: 500px;
border: 3px solid #388601; /* ✅ your green border */
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-left: 4px;
margin-right: 4px;
}
.map-card iframe {
width: 100%;
height: 100%;
border: 0;
pointer-events: none; /* full card clickable */
}
.map-card a {
display: block;
height: 100%;
}
.map-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}