/* MORUMBI_LOCATION_FOOTER_V1 */
.morumbi-location-footer {
    background:#15171b;
    color:#fff;
    padding:54px 20px;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
}
.morumbi-location-footer * { box-sizing:border-box; }
.morumbi-location-inner {
    width:min(1180px,100%);
    margin:auto;
}
.morumbi-location-heading {
    margin:0 0 24px;
    font-size:clamp(28px,4vw,48px);
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}
.morumbi-location-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.morumbi-map-card {
    display:flex;
    flex-direction:column;
    min-height:210px;
    padding:24px;
    color:#fff;
    background:#202329;
    border-top:5px solid #d71920;
    text-decoration:none;
    transition:transform .2s,background .2s;
}
.morumbi-map-card:hover,
.morumbi-map-card:focus-visible {
    background:#292d34;
    transform:translateY(-3px);
}
.morumbi-map-card strong {
    color:#d6a84b;
    font-size:22px;
    text-transform:uppercase;
}
.morumbi-map-card address {
    margin:12px 0 20px;
    color:#d2d4d8;
    font-style:normal;
    line-height:1.55;
}
.morumbi-map-link {
    margin-top:auto;
    color:#fff;
    font-size:13px;
    font-weight:850;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.morumbi-photo-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}
.morumbi-photo-grid img {
    width:100%;
    height:330px;
    object-fit:cover;
}
@media(max-width:800px) {
    .morumbi-location-grid { grid-template-columns:1fr; }
    .morumbi-map-card { min-height:175px; }
    .morumbi-photo-grid { grid-template-columns:1fr 1fr; }
    .morumbi-photo-grid img { height:240px; }
}
