/**
 * Footer Spacing Fix
 * Reduces the space above the footer
 * Includes responsive adjustments for different screen sizes
 */

/* Base styles for all screen sizes */
footer.wp-block-template-part {
    margin-top: 0 !important;
}

footer .wp-block-group {
    padding-top: 10px !important; /* Further reduced padding above footer content */
}

/* Ensure consistent spacing in the footer */
.wp-site-blocks > footer {
    margin-top: 15px !important; /* Reduced space between main content and footer */
}

/* Responsive adjustments */

/* Mobile devices (portrait phones) */
@media (max-width: 576px) {
    footer .wp-block-group {
        padding-top: 8px !important;
    }
    
    .wp-site-blocks > footer {
        margin-top: 10px !important;
    }
}

/* Tablets and small desktops */
@media (min-width: 577px) and (max-width: 991px) {
    footer .wp-block-group {
        padding-top: 10px !important;
    }
    
    .wp-site-blocks > footer {
        margin-top: 12px !important;
    }
}

/* Large desktops and up */
@media (min-width: 992px) {
    /* Keep the default values defined above */
}
