/* Standard-Design für alle Zitat-Blöcke */
.wp-block-quote {
	background-color: var(--wp--preset--color--base-3);
	border-left: none !important;
	border-radius: 1em;
	padding: var(--wp--preset--spacing--60) clamp(var(--wp--preset--spacing--20), 4vw, var(--wp--preset--spacing--80));
	position: relative;
	overflow: visible;
	color: var(--wp--preset--color--primary);
}

/* Schließende Anführungszeichen — oben rechts */
.wp-block-quote::before {
	content: "";
	position: absolute;
	top: var(--wp--preset--spacing--30);
	right: var(--wp--preset--spacing--30);
	width: 2.5rem;
	height: 3.33rem;
	background-image: url('../images/quotes.svg');
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	user-select: none;
}

/* Öffnende Anführungszeichen — unten links (gedreht) */
.wp-block-quote::after {
	content: "";
	position: absolute;
	bottom: var(--wp--preset--spacing--30);
	left: var(--wp--preset--spacing--30);
	width: 2.5rem;
	height: 3.33rem;
	background-image: url('../images/quotes.svg');
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	pointer-events: none;
	user-select: none;
}

.wp-block-quote p {
	color: var(--wp--preset--color--tertiary);
	font-size: var(--wp--preset--font-size--large);
	position: relative;
	z-index: 1;
}

/* Medien-Slot (WP 6.5+) ausblenden */
.wp-block-quote .wp-block-quote__media {
	display: none;
}

.wp-block-quote cite {
	display: block;
	color: var(--wp--preset--color--tertiary);
	font-size: var(--wp--preset--font-size--small);
	font-style: italic;
	font-weight: var(--wp--custom--font-weight--regular);
	position: relative;
	z-index: 1;
	margin-top: var(--wp--preset--spacing--30);
	padding-bottom: var(--wp--preset--spacing--10);
	width: fit-content;
}

.wp-block-quote cite a {
	color: var(--wp--preset--color--tertiary);
	text-decoration: underline;
}
