/**
 * Roskam — [beloftes] / [belofte] shortcode
 * Tokens: assets/css/root.css (--rk-*)
 */

.beloftes {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	margin-top: 24px;
}

@media (min-width: 640px) {
	.beloftes--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.beloftes--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.beloftes--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.beloftes .belofte {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: var(--rk-white, #ffffff);
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.beloftes .belofte__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 0 16px;
	border-radius: 12px;
	background: #e6f0f8;
}

.beloftes .belofte__icon-glyph {
	display: block;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	background-color: #026dbe;
	-webkit-mask: var(--belofte-icon) center / contain no-repeat;
	mask: var(--belofte-icon) center / contain no-repeat;
}

.beloftes .belofte__titel {
	display: block;
	width: 100%;
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #111827;
}

.beloftes .belofte__titel strong {
	font-weight: 700;
	font-size: inherit;
}

.beloftes .belofte__tekst {
	display: block;
	width: 100%;
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
	color: rgba(17, 24, 39, 0.7);
}
