/* Erweiterung - Zitat */

.mw-quote {
	display: block;
	text-align: center;
	position: relative;
}
.mw-quote::before {
	content: "";
	display: block;
	position: absolute;
	width: 67px;
	height: 50px;
	top: 40px;
	left: 50%;
	background-image: url('/img/layout/quote-up.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 63px;
}
.mw-quote::after {
	content: "";
	display: block;
	position: absolute;
	width: 67px;
	height: 50px;
	bottom: -31px;
	left: 50%;
	background-image: url('/img/layout/quote-down.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: -156px;
}
.mw-quote .image {
	display: block;
	width: 90px;
	height: 90px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 16px;
}
.mw-quote .content .text {
	font-family: var(--mw-font-secondary);
	font-size: 28px;
	line-height: var(--mw-font-secondary-weight-normal);
	line-height: 1;
	color: var(--mw-color-primary);
	margin-bottom: 10px;
}

@media all and (min-width: 901px){

	.mw-quote .image {
		margin-bottom: 20px;
	}
	.mw-quote .content .text {
		font-size: 38px;
		margin-bottom: 15px;
	}

}