/**
 * Map Screenshot Blocks Styles
 */

.map-screenshot-block {
    position: relative;
    width: 100%;
    height: 100% !important;
    min-height: 600px;
    pointer-events: none; /* Prevent interaction - it's just an image */
    overflow: hidden;
}

/* Image inside block */
.map-screenshot-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Mobile responsive heights */
@media (max-width: 781px) {
    .map-screenshot-block {
        min-height: 400px;
    }
}

/* Screen reader only text */
.map-screenshot-block .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
