/* VMCH — Transparent Verification Elementor Widget */

.vmch-tv-section,
.vmch-tv-section * {
	box-sizing: border-box;
}

.vmch-tv-section {
	width: 100%;
	max-width: 100%;
	padding: 48px 0;
	font-family: inherit;
}

.vmch-tv-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.vmch-tv-panel {
	position: relative;
	overflow: hidden;
	padding: 60px;
	border-radius: 24px;
	background: transparent;
	color: #ffffff;
}

.vmch-tv-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.vmch-tv-left,
.vmch-tv-right {
	min-width: 0;
}

.vmch-tv-subtitle {
	position: relative;
	margin: 0 0 10px;
	color: #3bb2ec;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.vmch-tv-subtitle::after {
	content: "";
	display: block;
	width: 35px;
	height: 2px;
	margin-top: 8px;
	background-color: #3bb2ec;
}

.vmch-tv-title {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.vmch-tv-desc,
.vmch-tv-bottom {
	color: #ffffff;
	font-size: 1.05rem;
	line-height: 1.6;
}

.vmch-tv-desc {
	margin: 0 0 30px;
	padding-right: 15px;
}

.vmch-tv-desc > :first-child,
.vmch-tv-bottom > :first-child {
	margin-top: 0;
}

.vmch-tv-desc > :last-child,
.vmch-tv-bottom > :last-child {
	margin-bottom: 0;
}

.vmch-tv-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.vmch-tv-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.vmch-tv-card:hover {
	background: rgba(255, 255, 255, 0.08);
}

.vmch-tv-icon {
	width: 65px;
	height: 65px;
	min-width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 12px;
	background: #ffffff;
	line-height: 1;
	overflow: hidden;
}

.vmch-tv-custom-svg,
.vmch-tv-elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.vmch-tv-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #2b70d4;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vmch-tv-icon i {
	color: #2b70d4;
	font-size: 32px;
	line-height: 1;
}

.vmch-tv-icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.vmch-tv-card-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.vmch-tv-card-copy h4 {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
}

.vmch-tv-card-copy p {
	margin: 0;
	color: #ffffff;
	font-size: 0.95rem;
	line-height: 1.5;
}

.vmch-tv-bottom {
	margin-top: 30px;
	padding-left: 20px;
	padding-right: 15px;
	border-left: 3px solid #3bb2ec;
}

.vmch-tv-right {
	position: relative;
}

.vmch-tv-image-wrap {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vmch-tv-image-wrap img {
	display: block;
	width: 130%;
	max-width: none;
	height: auto;
	margin-left: -15%;
	object-fit: contain;
}

@media (max-width: 991px) {
	.vmch-tv-panel {
		padding: 40px 20px;
	}

	.vmch-tv-grid {
		grid-template-columns: 1fr;
	}

	.vmch-tv-title {
		font-size: 2.2rem;
	}

	.vmch-tv-image-wrap img {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.vmch-tv-section {
		padding: 32px 0;
	}

	.vmch-tv-card {
		gap: 16px;
		padding: 16px;
	}

	.vmch-tv-icon {
		width: 58px;
		height: 58px;
		min-width: 58px;
	}

	.vmch-tv-icon svg,
	.vmch-tv-icon img {
		width: 28px;
		height: 28px;
	}

	.vmch-tv-icon i {
		font-size: 28px;
	}
}
