/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
add_action('wp_logout', function () {
    wp_redirect('https://worldviewimages.com/');
    exit;
});
/* 📷 Constrain image size on attachment pages */
body.attachment img,
body.attachment img[class^="wp-image-"] {
    max-height: 60vh !important;
    max-width: 90vw !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 1em auto !important;
}

/* 🔧 Prevent paragraph wrappers from stretching images */
body.attachment p {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 1em !important;
}
/* Responsive attachment image styles */
.responsive-attachment-img {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1em auto;
}

.responsive-attachment-img.tall {
    max-height: 85vh;
    max-width: 40vw;
}

@media (max-width: 768px) {
    .responsive-attachment-img {
        max-width: 95vw;
        max-height: 60vh;
    }

    .responsive-attachment-img.tall {
        max-width: 80vw;
        max-height: 70vh;
    }
}
