/**
 * Contact Map Block Styles
 * Matches Contact Form Block padding and spacing
 */

.contact-map-block {
    padding-bottom: 60px;
    margin: 0;
    background-color: #ffffff;
}

.contact-map-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Height Variations */
.contact-map-block.map-height-small .contact-map-wrapper iframe {
    height: 350px;
}

.contact-map-block.map-height-medium .contact-map-wrapper iframe {
    height: 450px;
}

.contact-map-block.map-height-large .contact-map-wrapper iframe {
    height: 550px;
}

.contact-map-block.map-height-extra-large .contact-map-wrapper iframe {
    height: 650px;
}

/* Tablet - matches contact-form block */
@media (min-width: 768px) {
    .contact-map-wrapper iframe {
        height: 450px;
    }
    
    .contact-map-block.map-height-small .contact-map-wrapper iframe {
        height: 400px;
    }
    
    .contact-map-block.map-height-medium .contact-map-wrapper iframe {
        height: 500px;
    }
    
    .contact-map-block.map-height-large .contact-map-wrapper iframe {
        height: 600px;
    }
    
    .contact-map-block.map-height-extra-large .contact-map-wrapper iframe {
        height: 700px;
    }
}

/* Desktop - matches contact-form block */
@media (min-width: 1024px) {

    .contact-map-wrapper iframe {
        height: 500px;
    }
    
    .contact-map-block.map-height-small .contact-map-wrapper iframe {
        height: 450px;
    }
    
    .contact-map-block.map-height-medium .contact-map-wrapper iframe {
        height: 550px;
    }
    
    .contact-map-block.map-height-large .contact-map-wrapper iframe {
        height: 650px;
    }
    
    .contact-map-block.map-height-extra-large .contact-map-wrapper iframe {
        height: 750px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .contact-map-wrapper iframe {
        height: 550px;
    }
}

/* Alignment Support */
.contact-map-block.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}


.contact-map-block.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Loading State */
.contact-map-wrapper iframe[loading="lazy"] {
    background: #f0f0f0;
}

/* Accessibility */
.contact-map-wrapper iframe:focus {
    outline: 2px solid #4a5f52;
    outline-offset: 2px;
}

