.location-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 1.5rem; align-items: stretch; }
.location-details { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius); color: #fff; background: var(--navy); }
.location-details h2 { color: #fff; }
.location-details a { color: #fff; }
.location-details address { margin: 1.25rem 0; font-style: normal; }
.map-frame { min-height: 430px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; }
@media (max-width: 760px) { .location-grid { grid-template-columns: 1fr; } .map-frame, .map-frame iframe { min-height: 360px; } }
