@charset "UTF-8";

/**
 * Column block — image cover utility.
 *
 * Makes the image inside a column stretch to fill the full column height
 * with object-fit: cover behavior, on all screen sizes.
 * Apply the tw-column-image-cover class via the editor toggle.
 */

.wp-block-column.tw-column-image-cover {
	display: flex;
	flex-direction: column;
}

.wp-block-column.tw-column-image-cover .wp-block-image {
	flex: 1;
	margin: 0;
	overflow: hidden;
}

.wp-block-column.tw-column-image-cover .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
