/* Quote block */
body .wp-block-quote {
	border: 1px solid var(--primary-color);
	padding: var(--wp--preset--spacing--fm-20) var(--wp--preset--spacing--fm-30);
	font-size: clamp(1rem, 4vw, 1.2rem);
	line-height: 2.2;
	position: relative;
	width: calc(100% - 0.75rem);
	margin: unset;
	margin-left: 0.75rem;
}

.wp-block-quote::before {
	content: '';
	background: url('../images/quote.svg');
	background-size: cover;
  position: absolute;
  inset: -0.75rem auto auto -0.75rem;
	width: 1.5rem;
	aspect-ratio: 1/1;
}

.wp-block-quote cite {
	font-size: clamp(0.9rem, 4vw, 1rem);
	font-weight: bold;
	text-align: right;
	line-height: 1.5;
}

@media (max-width: 68.49em) {
	body .wp-block-quote {
		width: calc(100% - 0.5rem);
		margin-left: 0.5rem;
	}

	.wp-block-quote::before {
		width: 1rem;
		inset: -0.5rem auto auto -0.5rem;
	}
	
}