/*
 * Lists, quotes and tables inside editorial content. No precedent for these
 * in the m2A design reference, so they extend the same rounded / purple-
 * accented language used for buttons and form fields elsewhere in the theme.
 */
.entry-content ul,
.wp-block-post-content ul,
.entry-content ol,
.wp-block-post-content ol {
	margin: 0 0 1.2em;
	padding-left: 1.2em;
	font-size: 1rem;
	color: var(--wp--preset--color--brand-lavender);
}

.entry-content ul li::marker,
.wp-block-post-content ul li::marker,
.entry-content ol li::marker,
.wp-block-post-content ol li::marker {
	color: var(--wp--preset--color--brand-purple-light);
	font-size: 0.9em;
	font-weight: 600;
}

.entry-content li,
.wp-block-post-content li {
	margin-bottom: 0.4em;
	font-size: 1rem;
	line-height: 1.6;
}

.entry-content blockquote,
.wp-block-post-content blockquote,
.wp-block-quote {
	margin: 0 0 1.2em;
	padding: 20px 28px;
	border-left: 4px solid var(--wp--preset--color--brand-purple-light);
	border-radius: 0 16px 16px 0;
	background: var(--wp--preset--color--brand-purple-dark);
	color: var(--wp--preset--color--brand-lavender);
	font-style: italic;
}

.wp-block-quote cite {
	display: block;
	margin-top: 0.6em;
	font-style: normal;
	font-weight: 600;
	color: var(--wp--preset--color--brand-purple-light);
}

.wp-block-table {
	overflow-x: auto;
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--wp--preset--color--brand-muted);
	border-radius: 12px;
	overflow: hidden;
}

.wp-block-table th,
.wp-block-table td {
	padding: 12px 16px;
	border: 1px solid var(--wp--preset--color--brand-muted);
	text-align: left;
}

.wp-block-table thead th {
	background: var(--wp--preset--color--brand-accent);
	color: var(--wp--preset--color--base);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 0.8125rem;
}

.wp-block-table tbody tr:nth-child(even) {
	background: var(--wp--preset--color--brand-purple-dark);
}
