/* Tiffanys Villas Manager — Values / Brand Pillars widget
   Structural styles only. Colors, sizes, spacing, typography are
   controlled from the Elementor Style tab and injected as inline CSS
   via {{WRAPPER}} selectors — do not hardcode brand colors here. */

.tv-values {
	text-align: center;
	font-family: inherit;
}

/* ---- Heading ---- */
.tv-values__head {
	margin-bottom: 48px;
}

.tv-values__heading {
	margin: 0 0 16px;
	line-height: 1.3;
}

.tv-values__divider-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.tv-values__divider {
	display: inline-block;
	width: 80px;
	height: 1px;
	background-color: #C9A24B;
}

.tv-values__divider-diamond {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #C9A24B;
	transform: rotate(45deg);
	flex-shrink: 0;
}

/* ---- Grid ---- */
.tv-values__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.tv-values__item {
	flex: 1 1 0;
	min-width: 180px;
	padding: 0 24px;
	box-sizing: border-box;
	border-right: 1px solid #DCD4C6;
}

.tv-values__item:last-child {
	border-right: none;
}

/* ---- Icon ---- */
.tv-values__icon-wrap {
	width: 78px;
	height: 78px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 1px solid #E4D3B0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tv-values__icon {
	font-size: 26px;
	line-height: 1;
}

.tv-values__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* ---- Item text ---- */
.tv-values__item-title {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.tv-values__underline {
	display: inline-block;
	width: 28px;
	height: 2px;
	background-color: #C9A24B;
	margin-bottom: 14px;
}

.tv-values__item-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.tv-values__grid {
		row-gap: 40px;
	}
	.tv-values__item {
		flex: 1 1 33%;
		border-right: none !important;
		margin-bottom: 20px;
	}
}

@media (max-width: 640px) {
	.tv-values__item {
		flex: 1 1 100%;
	}
}
