.to-overview {
	--to-columns: 2;
	--to-col-gap: 20px;
	--to-row-gap: 20px;
	--to-icon-gap: 16px;
	--to-icon-box: 48px;

	display: grid;
	grid-template-columns: repeat(var(--to-columns), minmax(0, 1fr));
	column-gap: var(--to-col-gap);
	row-gap: var(--to-row-gap);
	width: 100%;
	box-sizing: border-box;
}

.to-overview *,
.to-overview *::before,
.to-overview *::after {
	box-sizing: border-box;
}

.to-overview__item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	gap: var(--to-icon-gap);
	min-width: 0;
	background-color: #f5f7fa;
	border-radius: 12px;
	padding: 20px;
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.to-overview__item.is-stacked {
	flex-direction: column;
}

.to-overview__item.is-icon-right {
	flex-direction: row;
}

.to-overview__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 var(--to-icon-box);
	width: var(--to-icon-box);
	height: var(--to-icon-box);
	background-color: #e8f0ff;
	color: #0b5fff;
	border-radius: 10px;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.to-overview__icon i,
.to-overview__icon svg {
	display: block;
	line-height: 1;
}

.to-overview__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.to-overview__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	flex: 1 1 auto;
}

.to-overview__title {
	margin: 0;
	padding: 0;
	font-family: "Outfit", "Segoe UI", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1f2937;
	line-height: 1.35;
}

.to-overview__desc {
	margin: 0;
	padding: 0;
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #4b5563;
}

.to-overview__desc p {
	margin: 0 0 0.5em;
}

.to-overview__desc p:last-child {
	margin-bottom: 0;
}

.to-overview__desc strong,
.to-overview__desc b {
	font-weight: 700;
	color: #1f2937;
}
