/* LAYOUT */
.cb-wc-bst-wrapper {
	padding: 1em 0;
	position: relative;
	background: url(/wp-content/uploads/2022/01/background-triangle.svg);
	background-repeat: no-repeat;
	background-position: -5% 100%;
}
.cb-wc-bst-wrapper:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 90%;
	background-color: var(--very-light-grey);
	left: 0;
	top: 0;
	z-index: -1;
}
.cb-wc-bst-inner {
	text-align: center;
	max-width: 35%;
	margin: 6.25em auto;
}
.cb-wc-bst-inner h2 {
	font-family: tertre;
	font-size: 1.5em;
	font-weight: bold;
	line-height: normal;
}
.cb-wc-bst-desc {
	color: var(--black);
	margin: 3em 0;
}
.cb-wc-bst-button { /* "-button" statt "-btn" weil ich mindestens ein Wort in dieser Klasse komplett ausschreiben wollte */
	display: inline-block;
	font-family: tertre;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0.75em 2.25em;
	border: solid var(--black) 2px;
	background: transparent;
	transition: all ease-in-out 0.3s;
}

.cb-wc-bst-button:hover {
	color: var(--red);
/* 	transition: all ease-in-out 0.5s; */
}

/* MOBILE */
@media only screen and (max-width:768px){
	.cb-wc-bst-inner {
	text-align: center;
	max-width: 90%;
	margin: 6.25em auto;
}
	.cb-wc-bst-wrapper {
	padding: 1em 0;
	position: relative;
	background: url(/wp-content/uploads/2022/01/background-triangle.svg);
	background-repeat: no-repeat;
	background-position: -100% 90%;
	background-size: 300px 150px;
}
}
