/* ==========================================================================
   MODULE: GOOGLEMAPS-MODULE
   ========================================================================== */

.map-module {
    width: 100%;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Predvolená výška */
    line-height: 0;
}

/* Zabezpečenie, aby iframe vyplnil celý wrapper */
.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* Jemné prekrytie pre lepší vizuálny kontrast (voliteľné) */
.map-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.03);
}

/* Responzivita pre výšku mapy */
@media (max-width: 991.98px) {
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .map-wrapper {
        height: 300px;
    }
}