/*----------------------------------------------------------------- */
/* QUOTE
/*----------------------------------------------------------------- */

.block_quote blockquote,
.editor-styles-wrapper .wp-block[data-type='core/quote']
{
	font-style: italic;

	position: relative;

	padding-left: 52px;
}

.block_quote blockquote:before,
.editor-styles-wrapper .wp-block[data-type='core/quote']:before
{
	position: absolute;
	top: 0;
	left: 0;

	display: block;

	width: 2px;
	height: 100%;

	content: '';

	background: var(--color__main);
}

.block_quote blockquote p,
.editor-styles-wrapper .wp-block[data-type='core/quote'] p
{
	margin-bottom: 10px;
}

.block_quote cite,
.editor-styles-wrapper .wp-block[data-type='core/quote'] .wp-block-quote__citation
{
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	font-style: normal;

	display: block;

	margin-top: 15px;

	color: var(--color__black);
}

@media (max-width: 760px)
{
	.block_quote blockquote,
	.editor-styles-wrapper .wp-block[data-type='core/quote']
	{
		padding-left: 12px;
	}

	.block_quote blockquote:before,
	.editor-styles-wrapper .wp-block[data-type='core/quote']:before
	{
		left: 0;
	}
}
