/*
 Theme Name:   BWS Theme for GeneratePress
 Theme URI:    https://bridgewebsolutions.com
 Description:  Custom child theme for GeneratePress
 Author:       David Mitchell
 Author URI:   
 Template:     generatepress
 Version:      2024.10.23-A
*/


/* 
 * Typography Adjustments
 */

/* Always use baseline-aligned numerals if available */
body {
    font-variant-numeric: lining-nums;
}

/* Try to keep lines even when text is wrapped */
button, h1, h2, h3, h4, h5, h6, [class*=looks-h] {
	text-wrap: balance;
}

/* Reduce orphaned words */
p, div, blockquote, li {
	text-wrap: pretty;
}


/* Set the main content area minimum height to reduce likelihood of whitespace below footer */
#main {
	min-height: 65vh;
}

/* Reset default image caption alignment */
.wp-block-image figcaption {
    text-align: inherit;
}

/* Hide empty query loops (with class query-container); does not work for sliders */
.query-container:has(.gb-query-loop-wrapper:empty) {
    display: none;
}