/* Tear Variations */
.is-style-tear-top,
.is-style-tear-bottom,
.is-style-tear-top-bottom {
	position: relative;
	--tear-height: 3em;
	--tear-padding: calc(1em + var(--tear-height));
}

.is-style-tear-top,
.is-style-tear-top-bottom {
	padding-top: var(--tear-padding);
}

.is-style-tear-bottom,
.is-style-tear-top-bottom {
	padding-bottom: var(--tear-padding);
}

.is-style-tear-top::before,
.is-style-tear-bottom::after,
.is-style-tear-top-bottom::before,
.is-style-tear-top-bottom::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: var(--tear-height);
	background-image: url('/wp-content/plugins/bertuccis-cover-tear/page-tear-white.png');
	z-index: 2;
}

.is-style-tear-top::before,
.is-style-tear-top-bottom::before {
	top: 0;
	rotate: 180deg;
}

.is-style-tear-bottom::after,
.is-style-tear-top-bottom::after {
	bottom: 0;
}
