/* Insights › 03 Carta ao Investidor (card largo de destaque). */
.page-insights .ins-carta { padding-bottom: clamp(3rem, 2rem + 3vw, 72px); }
.page-insights .ins-feature {
	position: relative;
	display: block;
	aspect-ratio: 1185 / 234;
	min-height: 200px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--leto-charcoal);
}
.page-insights .ins-feature__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: .55;
	transition: transform .6s var(--ease);
}
.page-insights .ins-feature:hover .ins-feature__img { transform: scale(1.03); }
.page-insights .ins-feature__scrim {
	position: absolute; inset: 0;
	background: rgba(20,20,20,.5);
}
.page-insights .ins-feature__body {
	position: absolute; inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
}
.page-insights .ins-feature__title {
	font-size: clamp(1.26rem, 0.99rem + 0.9vw, 23.4px);
	font-weight: 500;
	color: #e9e9e9;
}
.page-insights .ins-feature__sub {
	font-size: 12.6px;
	font-weight: 500;
	color: #e9e9e9;
	opacity: .8;
}

@media (max-width: 680px) {
	.page-insights .ins-feature { aspect-ratio: auto; min-height: 260px; }
}
