/* ========================================
   Map Page Styles
   Loaded only on MapPage.cshtml
   ======================================== */

.map-page {
    width: 100%;
    margin-bottom: 86px;
}

.map-page__title {
    margin-bottom: 24px;
}

.map-page__intro,
.map-page__outro {
    margin: 24px 0;
}

/* ─── Kumu Map ─── */
.kumu-map {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.kumu-map__container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.kumu-map__container--fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
}

.kumu-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.kumu-map__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}

.kumu-map__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 768px) {
    .kumu-map__container {
        height: 400px;
    }

    .kumu-map__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
