/*
 * Responsive Fixes for Abnomize Theme
 */

/* ==========================================================================
   Mobile Overrides (Max Width 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {

    /* Contact Form 7 fixes */
    .wpcf7-form input.wpcf7-form-control:not(.wpcf7-submit, [type="radio"], [type="checkbox"]),
    .wpcf7-form textarea.wpcf7-form-control,
    .abnomize-contactform input.wpcf7-form-control,
    .abnomize-contactform textarea.wpcf7-form-control {
        width: 100% !important;
    }

    /* Prevent horizontal scroll from sticky header side-bleeds */
    body {
        overflow-x: hidden;
    }

    /* Fix fixed-pixel dimensions on decorative image style */
    .wp-block-image.is-style-abnomize-image-styleone {
        width: 100% !important;
        height: auto !important;
        margin: 40px auto 0 !important;
        max-width: 100% !important;
    }

    /* Gallery style two breaks layout at 50vw on narrow screens */
    .is-style-abnomize-gallery-styletwo .wp-block-image:hover {
        width: min(50vw, 100%) !important;
    }
}

/* ==========================================================================
   Accessibility & Usability Improvements
   ========================================================================== */

/* Focus outlines for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.wp-block-button__link:focus-visible {
    outline: 3px solid var(--wp--preset--color--primary, #5081f5);
    outline-offset: 2px;
}

/* Make sure mobile menu toggle button is a better touch target */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
    min-height: 44px;
    min-width: 44px;
}

/* High-contrast image rendering scaling to prevent blur on transforms */
.abnomize-post-cover img,
.wp-block-image.is-style-abnomize-image-styleone img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

/* Prevent image scale zooming from breaking out of post cover containing block */
.abnomize-post-cover {
    overflow: hidden;
}

/* Prevent portrait featured images from distorting in loops */
.wp-block-post-featured-image img {
    object-fit: cover;
}

/* Admin Bar overlap fix for sticky headers */
@media screen and (min-width: 600px) {
    body.admin-bar .is-style-abnomize-box-shadoweight[style*="position: sticky"] {
        top: 32px !important;
    }
}

@media screen and (max-width: 599px) {
    body.admin-bar .is-style-abnomize-box-shadoweight[style*="position: sticky"] {
        top: 46px !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

    .wp-block-navigation,
    .wp-block-search,
    .sidebar,
    .wp-block-post-navigation,
    footer,
    .news-ticker-holderv,
    .abnomize-hticker-controls,
    iframe {
        display: none !important;
    }

    body,
    .wp-block-post-content {
        color: #000 !important;
        background: #fff !important;
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}