/* Quote block */
body .wp-block-quote {
	background: var(--primary-color);
	color: #fff; 
	padding: 1.5rem 1.5rem 2.5rem 2.5rem;
	font-size: clamp(.9rem, 4vw, 1rem);
	line-height: 1.7; 
	position: relative;
	border-radius: 0 0 40px 0; 
	font-style: italic; 
	margin-left: 0;
	overflow: hidden; 
}

.wp-block-quote::before {
	content: '';
	background: url('../images/nu-quote.svg') no-repeat;
    position: absolute;
    inset: .5rem auto auto .5rem;
	width: 2.25rem;
	height: 2.25rem;
}

.wp-block-quote:after {
	content: '';
	position: absolute; 
	top: -1.75rem;
	left: -1.75rem; 
	width: 3.75rem; 
	height: 3.75rem; 
	background: rgba(0, 0, 0, .15); 
	transform: rotate(45deg);
}

.wp-block-quote cite {
	font-size: clamp(0.9rem, 4vw, 1rem);
	font-weight: bold;
	text-align: right;
	line-height: 1.5;
	font-style: normal; 
	position: relative; 
	padding-bottom: 1rem; 
}

.wp-block-quote cite:after{
	content: '';
	position: absolute; 
	bottom: .5rem; 
	right: 0; 
	width: 2rem;
	height: 1px; 
	background: var(--accent-color); 
}

/* block with footnote */
body .wp-block-quote.quote-with-footnote {
	background: none; 
	color: var(--wp--preset--color--content);
	font-style: normal !important ; 
	border-top: 1px solid var(--primary-color);
	border-left: 1px solid var(--primary-color);
	overflow: visible; 
	margin-left: 1rem; 
	padding: 1rem; 
}

.quote-with-footnote.wp-block-quote:after{
	display: none; 
}

.quote-with-footnote.wp-block-quote:before{
	background: url('../images/citation.svg') no-repeat;
	width: 1rem;
	height: 1rem; 
	left: -.5rem;
	top: -.5rem; 
}

.wp-block-footnotes {
	padding-left: .75rem;
	font-size: .8rem;
}


