.jb-container {
	width: min(calc(100% - 2.5rem), var(--jb-container));
	margin-inline: auto;
}

.jb-section {
	padding-block: clamp(5rem, 9vw, 8rem);
}

.jb-section--soft {
	background: var(--jb-background);
}

.jb-section--dark {
	color: rgba(255, 255, 255, 0.78);
	background: var(--jb-anthracite);
}

.jb-section-heading {
	max-width: 760px;
	margin-bottom: var(--jb-space-6);
}

.jb-section-heading h2 {
	margin: 0 0 var(--jb-space-3);
	font-size: clamp(2.25rem, 4vw, 4rem);
	line-height: 1.04;
}

.jb-section-heading > p:last-child {
	max-width: 680px;
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.75;
}

.jb-two-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
}

.jb-card-grid {
	display: grid;
	gap: var(--jb-space-4);
}

.jb-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jb-centered-content {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.jb-prose {
	font-size: 1.06rem;
	line-height: 1.85;
}

.jb-prose p + p {
	margin-top: var(--jb-space-4);
}