.vt-cd614cd4-wrapper {
	display: grid;
	gap: 20px;
    align-items: start;
}
@media (max-width: 959px) {
	.vt-cd614cd4-wrapper {
		grid-template-columns: 1fr !important;
	}
	.vt-cd614cd4-content-col {
		display: none;
	}
}
.vt-cd614cd4-content-item {
	display: none;
}
@media (min-width: 960px) {
    .vt-cd614cd4-content-item.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.vt-cd614cd4-tab {
	position: relative;
	padding: 20px;
	border-radius: 12px;
	cursor: pointer;
	transition: background-color 0.22s ease, box-shadow 0.22s ease;
	margin-bottom: 10px;
    --tab-accent-color: #0468d3;
    overflow: hidden;
}

.vt-cd614cd4-tab.active {
	box-shadow: 0 4px 20px rgba(4, 104, 211, 0.08);
	border: 1px solid rgba(4, 104, 211, 0.18);
}

.vt-cd614cd4-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--tab-accent-color);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.vt-cd614cd4-tab.active .vt-cd614cd4-accent {
	opacity: 1;
}

.vt-cd614cd4-number {
	font-size: 11px;
	letter-spacing: 1px;
	color: #8BA8C5;
	margin-bottom: 5px;
	transition: color 0.22s ease;
}

.vt-cd614cd4-tab.active .vt-cd614cd4-number {
	color: var(--tab-accent-color);
}

.vt-cd614cd4-title {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a2b3c;
}

.vt-cd614cd4-desc {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #2D4A6B;
	line-height: 1.65;
	margin-top: 10px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.vt-cd614cd4-desc > div {
    overflow: hidden;
}

.vt-cd614cd4-tab.active .vt-cd614cd4-desc {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 10px;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}