/**
 * Shortcodes [usp] en [usps] — compacte USP-blokjes
 */

.tb-usps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
	width: 100%;
}

@media (max-width: 640px) {
	.tb-usps {
		grid-template-columns: 1fr;
	}
}

.tb-usp {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.tb-usp__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(30, 64, 175, 0.1);
	color: #1e40af;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tb-usp__icon svg {
	width: 20px;
	height: 20px;
	display: block;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
}

.tb-usp__body {
	min-width: 0;
}

.tb-usp__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
	line-height: 1.3;
}

.tb-usp__text {
	font-size: 0.75rem;
	color: #64748b;
	margin: 2px 0 0;
	line-height: 1.4;
}

/* Avada/Fusion: reset kolom-flex en heading-styling */
.fusion-flex-container .tb-usps,
.fusion-layout-column .tb-usps,
.fusion-column-wrapper .tb-usps,
.fusion-text .tb-usps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	max-width: 100%;
}

@media (max-width: 640px) {
	.fusion-flex-container .tb-usps,
	.fusion-layout-column .tb-usps,
	.fusion-column-wrapper .tb-usps,
	.fusion-text .tb-usps {
		grid-template-columns: 1fr;
	}
}

.fusion-flex-container .tb-usp,
.fusion-layout-column .tb-usp,
.fusion-column-wrapper .tb-usp,
.fusion-text .tb-usp,
.fusion-builder-column .tb-usp {
	display: flex;
	width: 100%;
	max-width: 100%;
	background: none;
	box-shadow: none;
}

.fusion-text .tb-usp .tb-usp__title,
.fusion-column-wrapper .tb-usp .tb-usp__title,
.fusion-builder-column .tb-usp .tb-usp__title {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	color: #0f172a;
}

.fusion-text .tb-usp .tb-usp__text,
.fusion-column-wrapper .tb-usp .tb-usp__text,
.fusion-builder-column .tb-usp .tb-usp__text {
	font-size: 0.75rem;
	line-height: 1.4;
	color: #64748b;
	margin: 2px 0 0;
}

.fusion-text .tb-usp .tb-usp__icon,
.fusion-column-wrapper .tb-usp .tb-usp__icon,
.fusion-builder-column .tb-usp .tb-usp__icon {
	display: flex;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin: 0;
	background: rgba(30, 64, 175, 0.1);
	border-radius: 12px;
	color: #1e40af;
}
