/* O Que Fazemos › 03 Visão Geral das Verticais (cards brancos). */
.page-o-que-fazemos .ofz-verts { border-top: 1px solid rgba(45,45,45,.12); }
.page-o-que-fazemos .ofz-verts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(.75rem, 1.2vw, 14px);
	padding-block: clamp(1rem, 2vw, 24px) clamp(2.5rem, 2rem + 3vw, 72px);
}
.page-o-que-fazemos .ofz-vert {
	min-height: 161px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(1.25rem, 2.2vw, 28px);
	border-radius: 12px;
	background: #fff;
}
.page-o-que-fazemos .ofz-vert__name {
	font-size: 19.8px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--leto-ink);
}
.page-o-que-fazemos .ofz-vert__date {
	font-size: 14.4px;
	line-height: 1.06;
	font-weight: 400;
	color: var(--leto-ink);
	opacity: .82;
}

@media (max-width: 900px) {
	.page-o-que-fazemos .ofz-verts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	/* 2 por linha + altura compacta (1 coluna deixava cards altos com espaço vazio). */
	.page-o-que-fazemos .ofz-verts__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.page-o-que-fazemos .ofz-vert { min-height: 120px; }
}
