/* Widget: Glass Section Header */
.sb-sh {
	display: flex;
	flex-direction: column;
	gap: var(--sb-space-sm);
}

.sb-sh__title {
	margin: 0;
	/* Original: 24px / 700 / lh 32px */
	font-size: clamp(1.375rem, 1.2rem + 0.5vw, 24px);
	font-weight: 700;
	line-height: 32px;
	color: var(--sb-white);
}

.sb-sh__subtitle {
	margin: 0;
	color: var(--sb-white);
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
}

.sb-sh__divider {
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 0.5rem;
	border-radius: var(--sb-radius-pill);
	background: linear-gradient(90deg, var(--sb-color-primary), var(--sb-color-accent));
}
