/* PEIBWA image features (Lake block). Rounded photo with a white rounded
   card overlapping below it — matches the home page "You don't have to
   figure it out alone." columns. */

.lake-root .b-image-features .s-head {
	text-align: center;
	margin: 0 0 3rem;
}

.lake-root .b-image-features .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.lake-root .b-image-features .items.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.lake-root .b-image-features .frame img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
}

/* Logo fit: show the whole image, uncropped, on white (sponsor logos). */
.lake-root .b-image-features.fit-logo .frame img {
	object-fit: contain;
	background: #fff;
	padding: 1rem;
	box-sizing: border-box;
	aspect-ratio: 16 / 9;
}

.lake-root .b-image-features .card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	margin: -2rem 1rem 0;
	box-shadow: 0 4px 16px rgba(39, 47, 56, 0.06);
}

.lake-root .b-image-features .card h4 {
	color: var(--color-secondary, #6F5EAE);
	margin: 0 0 0.75rem;
}

.lake-root .b-image-features .card .body {
	color: var(--color-gray-700, #374151);
	line-height: 1.6;
}

.lake-root .b-image-features .card .body p {
	margin: 0 0 0.75rem;
}

.lake-root .b-image-features .card .body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.lake-root .b-image-features .items,
	.lake-root .b-image-features .items.cols-4 {
		grid-template-columns: 1fr;
	}

	.lake-root .b-image-features .s-head {
		margin-bottom: 2rem;
	}
}
