/**
 * Full Width Image Section Block Styles
 * 
 * @package ACF Child Theme
 */

/* ==========================================================================
   Full Width Image Section Block
   ========================================================================== */

.full-width-image-section-block {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* Ensure full width even within containers */
.full-width-image-section-block.alignfull {
    max-width: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Image Wrapper */
.fwis-image-wrapper {
    width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
}

/* Image Styles */
.fwis-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .fwis-image-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .fwis-image {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .fwis-image-wrapper {
        width: 100%;
    }
    
    .fwis-image {
        width: 100%;
        min-height: auto;
    }
}

/* Editor Styles */
.wp-block {
    max-width: 100%;
}

/* Ensure no margin/padding from parent themes */
.full-width-image-section-block * {
    box-sizing: border-box;
}

/* Remove any potential spacing issues */
.full-width-image-section-block picture {
    display: block;
    width: 100%;
    line-height: 0;
}

/* Accessibility - Focus Styles */
.fwis-image:focus {
    outline: 2px solid var(--green-primary, #006a3c);
    outline-offset: 2px;
}
