/* Quote block */
body .wp-block-quote {
	border: 1px solid var(--primary-color);
	padding: 2.4rem clamp(1rem, 2.6vw, 2.4rem) clamp(1.8rem, 3.9vw, 3.7rem);
	font-size: clamp(1rem, 4vw, 1.2rem);
	line-height: 1.9;
	position: relative;
	background-color: var(--light-blue);
	margin-left: 0;
	margin-right: 0;
}

.wp-block-quote::before {
	content: '';
	background: var(--light-blue) url('../images/quote.svg');
	background-size: cover;
  position: absolute;
  left: calc(50% - 0.4rem);
	top: 1.5rem;
	width: 0.8rem;
	aspect-ratio: 1/1;
	z-index: 1;
}

.wp-block-quote::after {
	content: '';
	width: 2.3rem;
	aspect-ratio: 1/1;
	background-color: var(--light-blue);
	position: absolute;
	top: 0.5rem;
	left: calc(50% - 1.12rem);
}

.wp-block-quote cite {
	font-size: clamp(0.9rem, 4vw, 1rem);
	font-weight: bold;
	text-align: right;
	line-height: 1.5;
}

.wp-block-quote p {
	position: relative;
}

.wp-block-quote p:first-of-type::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--black);
	position: absolute;
	top: -0.5rem;
	left: 0;


}