/* --- Icon Feature Grid --- */
.vase-grid-section {
	padding: 0 0 40px 0;
}

.vase-grid-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 32px;
}

.vase-grid-title {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	letter-spacing: 0.03em;
	margin: 0 0 12px;
}

.vase-grid-subtitle {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.vase-grid {
	--vase-columns: 2;
	display: grid;
	grid-template-columns: repeat(var(--vase-columns), 1fr);
	gap: 20px;
}

.vase-grid-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 20px; border-radius:20px;
	box-shadow:2px 4px 10px 0px #d9d9d98c;
}

.vase-icon-badge {
	flex-shrink: 0;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 3px solid #d4a13d;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.vase-icon-badge svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.vase-item-content {
	flex: 1;
}

.vase-item-title {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.vase-item-description {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

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

/* --- Promise Banner --- */
.vase-promise-banner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
	padding: 36px 4%;
	background: #16101f;
}

.vase-promise-media {
	flex: 1 1 320px;
	min-width: 240px;
	display: flex;
	justify-content: center;
}

.vase-promise-media img {
	max-width: 100%;
	height: auto;
	display: block;
}

.vase-promise-content {
	flex: 2 1 480px;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vase-promise-badge {
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vase-promise-text {
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 8px;
	max-width: 62ch;
}

.vase-promise-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}

.vase-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	width: 100px;
}

.vase-chip-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid #d4a13d;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.vase-chip-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.vase-chip-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.vase-promise-banner {
		flex-direction: column;
		text-align: center;
	}

	.vase-promise-content {
		align-items: center;
	}

	.vase-promise-chips {
		justify-content: center;
	}
}
