.vtx-expandable-features {
	background: #fff;
	color: #404040;
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vtx-expandable-features__inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 40px;
}

.vtx-expandable-features__intro {
	max-width: 860px;
}

.vtx-expandable-features__eyebrow {
	margin: 0;
	color: #ff6214;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.vtx-expandable-features__heading {
	margin: 16px 0 0;
	color: #404040;
	font-size: 36px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.vtx-expandable-features__body {
	max-width: 760px;
	margin: 16px 0 0;
	color: #5a5959;
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	letter-spacing: 0;
}

.vtx-expandable-features__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 32px;
	align-items: stretch;
}

.vtx-expandable-card {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 24px 60px rgba(64, 64, 64, 0.1);
	backdrop-filter: blur(8px);
}

.vtx-expandable-card__icon {
	display: inline-flex;
	width: 36px;
	height: 36px;
	color: #ff6214;
	flex: 0 0 auto;
}

.vtx-expandable-card__icon svg {
	width: 36px;
	height: 36px;
}

.vtx-expandable-card__title {
	margin: 20px 0 0;
	color: #404040;
	font-size: 24px;
	line-height: 1.375;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.vtx-expandable-card__content {
	position: relative;
	margin-top: 12px;
	max-height: 320px;
	overflow: hidden;
	transition: max-height 300ms ease-in-out;
}

.vtx-expandable-card__body {
	margin: 0;
	color: #5a5959;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0;
}

.vtx-expandable-card__fade {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	height: 64px;
	pointer-events: none;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.vtx-expandable-card.has-overflow:not(.is-expanded) .vtx-expandable-card__fade {
	display: block;
}

.vtx-expandable-card.is-expanded .vtx-expandable-card__fade {
	display: none;
}

.vtx-expandable-card__bullets {
	margin: 12px 0 0;
	padding: 0;
	color: #5a5959;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	list-style: none;
}

.vtx-expandable-card__bullets li {
	display: flex;
	gap: 8px;
	font-size: 14px;
	line-height: 24px;
}

.vtx-expandable-card__bullets li + li {
	margin-top: 8px;
}

.vtx-expandable-card__bullets li > span:not(.vtx-expandable-card__bullet-dot) {
	font-size: 14px !important;
	line-height: 24px;
}

.vtx-expandable-card__bullet-dot {
	width: 4px;
	height: 4px;
	margin-top: 10px;
	border-radius: 999px;
	background: #ff6214;
	flex: 0 0 auto;
}

.vtx-expandable-card__toggle {
	align-self: flex-start;
	margin: 16px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ff6214;
	font: inherit;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: color 180ms ease;
}

.vtx-expandable-card__toggle:hover,
.vtx-expandable-card__toggle:focus-visible {
	color: #d25314;
}

.vtx-expandable-card__toggle[hidden] {
	display: none;
}

.vtx-expandable-card__toggle [data-collapse-label] {
	display: none;
}

.vtx-expandable-card.is-expanded .vtx-expandable-card__toggle [data-expand-label] {
	display: none;
}

.vtx-expandable-card.is-expanded .vtx-expandable-card__toggle [data-collapse-label] {
	display: inline;
}

@media (prefers-reduced-motion: reduce) {
	.vtx-expandable-card__content {
		transition: none;
	}
}

@media (min-width: 768px) {
	.vtx-expandable-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1280px) {
	.vtx-expandable-features__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.vtx-expandable-features__inner {
		padding-right: 24px;
		padding-left: 24px;
	}
}

@media (max-width: 420px) {
	.vtx-expandable-features__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.vtx-expandable-card {
		padding: 22px;
	}
}
