/* ── Values Grid Section ──────────────────────────────────── */

.values-grid-section {
	background: var(--warm, #f8f8f8);
}

.values-grid-heading {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 32px;
}

/* ── Grid ────────────────────────────────────────────────── */

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

/* ── Card ────────────────────────────────────────────────── */

.values-card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 32px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.values-card-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 8px;
}

.values-card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gray-500, #6b7280);
	margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */

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