/**
 * RSI Toolkit — Statement widget.
 *
 * Baked to the rsi_v2 ".purpose" section: centred two-column grid
 * (219px label | 381px statement, 112px gap), red accent bar, Alexandria 700.
 * Elementor Style-tab controls emit higher-specificity inline rules, so every
 * value here is overridable per-instance.
 */

.rsi-statement {
	padding: 112px 0;
}

.rsi-statement__grid {
	display: grid;
	grid-template-columns: 219px 381px;
	gap: 112px;
	align-items: start;
	justify-content: center;
}

.rsi-statement__aside {
	min-width: 0;
}

.rsi-statement__bar {
	display: block;
	width: 48px;
	height: 9px;
	background: #bf0031;
	margin-bottom: 10px;
}

.rsi-statement__label {
	margin: 0;
	font-family: 'Alexandria', sans-serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 41px;
	letter-spacing: .25px;
	color: #0a0a0a;
}

.rsi-statement__body {
	min-width: 0;
}

.rsi-statement__text {
	margin: 0;
	font-family: 'Alexandria', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: #0a0a0a;
	max-width: 381px;
}

/* Stacked layout: label above statement, single column. */
.rsi-statement--stacked .rsi-statement__grid {
	grid-template-columns: 1fr;
	gap: 24px;
	justify-content: start;
}

/* Tablet / mobile: collapse to one column. */
@media (max-width: 1024px) {
	.rsi-statement__grid {
		grid-template-columns: minmax(0, 219px) minmax(0, 381px);
		gap: 56px;
	}
}

@media (max-width: 768px) {
	.rsi-statement {
		padding: 64px 0;
	}
	.rsi-statement__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		justify-content: start;
	}
	.rsi-statement__label {
		font-size: 28px;
		line-height: 1.2;
	}
	.rsi-statement__text {
		font-size: 20px;
		line-height: 1.4;
		max-width: 100%;
	}
}
