/* ===== DIGISCHOOL BLOCKS : SANS ARRONDI, SANS CONTOUR ===== */

.dslb-box,
.dslb-example,
.dslb-summary,
.dslb-objective,
.dslb-reflection,
.dslb-info,
.dslb-warning,
.dslb-success {
	margin: 18px 0;
	padding: 16px 18px;
	line-height: 1.65;
	font-size: 15px;
	border-radius: 0 !important;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}

.dslb-box-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-weight: 700;
}

.dslb-box-content > *:first-child {
	margin-top: 0;
}

.dslb-box-content > *:last-child {
	margin-bottom: 0;
}

.dslb-info {
	background: #e8f4ff;
	border-left: 4px solid #2196f3 !important;
}

.dslb-warning {
	background: #fff4e5;
	border-left: 4px solid #ff9800 !important;
}

.dslb-success {
	background: #e6f9ec;
	border-left: 4px solid #4caf50 !important;
}

.dslb-example {
	background: #ffffff;
}

.dslb-summary {
	background: #f6f8fb;
	border-left: 4px solid #2563eb !important;
}

.dslb-objective {
	background: #eefbf3;
	border-left: 4px solid #16a34a !important;
}

.dslb-reflection {
	background: #faf5ff;
	border-left: 4px solid #9333ea !important;
}

.dslb-steps {
	margin: 18px 0;
}

.dslb-step {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.dslb-step-number {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	background: #2563eb;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	border-radius: 0 !important;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}

.dslb-step-content strong {
	display: block;
	margin-bottom: 4px;
}

@media (max-width: 768px) {
	.dslb-box,
	.dslb-example,
	.dslb-summary,
	.dslb-objective,
	.dslb-reflection,
	.dslb-info,
	.dslb-warning,
	.dslb-success {
		padding: 14px 15px;
		font-size: 14px;
	}

	.dslb-step {
		gap: 10px;
	}

	.dslb-step-number {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
		font-size: 13px;
	}
}