/*
Theme Name: Mill House Infield
Template: infield-wpcom
Description: A customized version of Infield for Mill House.
Version: 1.0.0
Author: Low Fat Designs
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/**
 * Improved header title/nav layout for long title
 *
 * Usage:
 *     Add class `mh-has-long-title` to the columns block in the header.
 */
@media (max-width: 599px) {
    .mh-has-long-title > .wp-block-column:nth-child(1) {
        flex-basis: 100%!important;
    }

    .mh-has-long-title > .wp-block-column:nth-child(2) {
        flex-basis: fit-content !important;
    }
}

@media (min-width: 600px) and (max-width: 1025px) {
    .mh-has-long-title.wp-block-columns.is-not-stacked-on-mobile {
        flex-wrap: wrap !important;
    }

    .mh-has-long-title > .wp-block-column:nth-child(1) {
        flex-basis: 100%!important;
    }

    .mh-has-long-title > .wp-block-column:nth-child(2) {
        flex-basis: 100%!important;
    }
    .mh-has-long-title .items-justified-right.wp-block-navigation {
        justify-content: flex-start !important;
    }
}