/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/*
 * Page hero fix (2026-08-18):
 * Inner pages use Blocksy hero type-2 with a white 70px title, but no page
 * has a featured image, so the title rendered white-on-white inside a 50vh
 * empty band. Give pages the same solid brand-blue band the blog archive
 * hero already uses (palette color 2), and match its 20vh height.
 * Scoped to .page so the homepage and Contact (hero disabled) and the blog
 * archive are untouched.
 */
.page .hero-section[data-type="type-2"] {
	background-color: var(--theme-palette-color-2, #003f88);
}

.page .hero-section[data-type="type-2"] .entry-header {
	min-height: 20vh;
}

/*
 * Homepage hero slider height fix (2026-08-18):
 * The hero swiper images have mixed aspect ratios, so the slide height
 * jumped on every rotation. Lock every slide image to the same square
 * crop (the ratio of the tallest slides) so the hero keeps one height.
 */
.gspb_slider-id-gsbp-b0636d9 .swiper-slide img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
