.dojo-location-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.map-section {
    margin-top: 30px;
}

.map-placeholder {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 18px;
    margin-top: 20px;
    padding: 10px; /* optional but helps spacing */
}

/* Base map styling */
.dojo-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Desktop: show desktop map, hide mobile map */
.desktop-map {
    display: block;
}
.mobile-map {
    display: none;
}

/* Mobile: swap visibility */
@media (max-width: 768px) {
    .desktop-map {
        display: none;
    }
    .mobile-map {
        display: block;
    }
}

