/**
 * Quote Block Styles
 * Based on Figma Design System - Styleguide
 * Base styles (font, color, border, padding, margin) are defined in theme.json
 * Only additional styles (cite spacing, ::before removal, alignment) are here
 */

/* Base styles are handled by theme.json - only additional styles below */

.wp-block-quote cite {
	display: block;
	margin-top: 1rem;
	opacity: 0.8;
	/* Font, color, line-height are defined in theme.json */
}

/* Remove default quote marks */
.wp-block-quote::before {
	content: '';
	display: none;
}

.wp-block-quote.has-text-align-center::before,
.wp-block-quote.has-text-align-right::before {
	content: '';
	display: none;
}

.wp-block-quote.has-text-align-right p::before {
	content: '';
	display: none;
}

/* Quote alignment */
.wp-block-quote.has-text-align-left {
	text-align: left;
}

.wp-block-quote.has-text-align-center {
	text-align: center;
}

.wp-block-quote.has-text-align-right {
	text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
	.wp-block-quote cite {
		font-size: 14px;
	}
}
