/* ==========================================================================
   Elementor Value Props Row Widget — structural styles.
   All colors, spacing, typography, and border/bar values are controlled
   live from Elementor (see class-value-props-row-widget.php). This file
   only contains the structural CSS needed to make the layout work; it
   intentionally avoids hardcoding any editable design values.
   ========================================================================== */

.evpw-value-props {
	width: 100%;
	box-sizing: border-box;
	border-top: 0 solid transparent;
}

.evpw-value-props *,
.evpw-value-props *::before,
.evpw-value-props *::after {
	box-sizing: border-box;
}

.evpw-outer {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.evpw-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 64px;
	row-gap: 48px;
	flex: 1 1 auto;
	min-width: 0;
}

.evpw-item {
	border-left: 1px solid transparent;
	padding-left: 24px;
	min-width: 0;
}

.evpw-item--no-divider {
	border-left: 0 !important;
	padding-left: 0 !important;
}

.evpw-item-inner {
	max-width: 100%;
}

.evpw-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0 0 12px;
}

.evpw-title {
	text-transform: uppercase;
	margin: 0 0 18px;
	line-height: 1.2;
}

.evpw-desc {
	margin: 0;
}

.evpw-peek {
	flex: 0 0 auto;
	align-self: stretch;
	margin-inline: 0;
}

.evpw-peek--left {
	margin-right: 40px;
}

.evpw-peek--right {
	margin-left: 40px;
}

@media (max-width: 1024px) {
	.evpw-peek {
		display: none;
	}

	.evpw-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.evpw-row {
		grid-template-columns: 1fr;
	}

	.evpw-item {
		border-left: 0 !important;
		padding-left: 0 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 24px;
	}

	.evpw-item:first-child {
		border-top: 0;
		padding-top: 0;
	}
}
