/* Quote block */
body .wp-block-quote {
	border: 1px solid var(--primary-color);
	padding: clamp(0.5rem, 4vw, 1.6em) clamp(1rem, 4vw, 5.5rem) clamp(1rem, 4vw, 2.6rem);
	font-size: clamp(1rem, 4vw, 1.2rem);
	line-height: 2.2;
	position: relative;
	margin: 1.2rem auto 0;
	width: calc(100vw - 4rem);
}

.wp-block-quote::before {
	content: '';
	background: var(--primary-color) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="20" height="14"><path fill="white" d="M18.57 0H14.3l-2.86 5.6V14H20V5.6h-4.29L18.57 0ZM7.14 0H2.86L0 5.6V14h8.57V5.6H4.3L7.14 0Z"/></svg>') center no-repeat;
    position: absolute;
    inset: -1rem auto auto -1rem;
	width: 2rem;
	height: 2rem;
}

.wp-block-quote cite {
	display: block;
	font-size: clamp(0.9rem, 4vw, 1rem);
	font-weight: bold;
	text-align: right;
	line-height: 1.5;
}