.twoUfi-image {
	border-radius: 16px;
	overflow: hidden;
}

.twoUfi-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Portrait — taller than wide */
.twoUfi-image--portrait {
	aspect-ratio: 3 / 4;
}

.twoUfi-image--portrait img {
	height: 100%;
}

/* Mild Portrait — slightly taller than wide */
.twoUfi-image--portrait-mild {
	aspect-ratio: 5 / 6;
}

.twoUfi-image--portrait-mild img {
	height: 100%;
}

/* Square */
.twoUfi-image--square {
	aspect-ratio: 1 / 1;
}

.twoUfi-image--square img {
	height: 100%;
}

/* Mild Landscape — slightly wider than tall */
.twoUfi-image--landscape-mild {
	aspect-ratio: 6 / 5;
}

.twoUfi-image--landscape-mild img {
	height: 100%;
}

/* Landscape — wider than tall */
.twoUfi-image--landscape {
	aspect-ratio: 4 / 3;
}

.twoUfi-image--landscape img {
	height: 100%;
}
