.vtx-solutions {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #fcdea4 0%, #fbf0db 55%, #f8f6f5 100%);
	color: #404040;
	font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vtx-solutions__pattern {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 384px;
	height: 352px;
	max-width: none;
	pointer-events: none;
	background: url("../../vantixb-assets/brand/pattern-02.svg") right bottom / contain no-repeat;
	mix-blend-mode: multiply;
	opacity: 0.75;
}

.vtx-solutions__inner {
	position: relative;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 64px 24px;
}

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

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

.vtx-solutions__grid {
	display: grid;
	gap: 20px;
	margin-top: 32px;
}

.vtx-solution-card {
	display: block;
	height: 100%;
	border-radius: 18px;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 24px 60px rgba(64, 64, 64, 0.1);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vtx-solution-card[href]:hover,
.vtx-solution-card[href]:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 32px 70px rgba(64, 64, 64, 0.16);
}

.vtx-solution-card:focus-visible {
	outline: 3px solid rgba(255, 132, 23, 0.45);
	outline-offset: 4px;
}

.vtx-solution-card__surface {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border-radius: 18px;
	background: transparent;
}

.vtx-solution-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #f8f6f5;
}

.vtx-solution-card__footer {
	position: relative;
	display: flex;
	flex: 1;
	background: linear-gradient(135deg, #ff4c2c 0%, #ff6214 30%, #ff8417 60%, #ffb217 88%, #ffda52 100%);
}

.vtx-solution-card__copy {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-bottom-right-radius: 120px;
	background: #fff;
	padding: 20px 56px 20px 20px;
}

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

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

.vtx-solution-card__icon {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #ff6214;
}

.vtx-solution-card__icon :where(svg, i, img) {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.vtx-solution-card__arrow svg {
	width: 100%;
	height: 100%;
}

.vtx-solution-card__arrow {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 2;
	display: inline-flex;
	width: 24px;
	height: 24px;
	color: #fff;
	transition: transform 150ms ease;
}

.vtx-solution-card[href]:hover .vtx-solution-card__arrow,
.vtx-solution-card[href]:focus-visible .vtx-solution-card__arrow {
	transform: translateX(2px);
}

@media (min-width: 1024px) {
	.vtx-solutions__inner {
		padding-right: 40px;
		padding-left: 40px;
	}

	.vtx-solutions__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.vtx-solution-card,
	.vtx-solution-card__arrow {
		transition: none;
	}
}
