/* Column
--------------------------------------------- */

.is-style-column-box-shadow {
	box-shadow: 0px 8px 40px -20px rgb(21 14 41 / 12%);
	transition: var(--nvi-transition-medium);
}

.is-style-column-box-shadow:hover {
	box-shadow: 0px 12px 60px -20px rgb(21 14 41 / 16%);
}

/* Helper class to swap order on mobile */
@media (width < 992px) {
	.wp-block-column {
		&>* {
			height: 100%;

		}
	}

	.novavi-swap-order {
		flex-direction: column-reverse;
	}

	.novavi-row-reverse {
		flex-direction: row-reverse;
	}
}

@media (width >=992px) {
	.wp-block-column {
		&>:is(.wp-block-group, .has-background) {
			height: 100%;

		}
	}

	.nvi-align-center {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.nvi-img-fill {
		position: relative;
		height: 100%;
		min-height: 250px;

		&>img {
			position: absolute;
			height: 100%;
			width: 100%;
			object-fit: cover;
			inset: 0;
		}


	}
}