.cfi-responsive-image {
	display: block;
	max-width: 100%;
	height: auto;
}

.cfi-image,
.cfi-image img {
	display: block;
	width: 100%;
}

.cfi-image--hero img,
.cfi-image--card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cfi-gallery {
	display: grid;
	gap: 12px;
	margin: 0;
}

.cfi-gallery--two-column,
.cfi-gallery--natural {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cfi-gallery--three-column {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cfi-gallery__item {
	min-width: 0;
	margin: 0;
}

.cfi-gallery__link,
.cfi-gallery__link img {
	display: block;
	width: 100%;
}

.cfi-gallery__link img {
	height: auto;
}

.cfi-gallery__item figcaption {
	margin-top: 6px;
	font-size: .875rem;
	line-height: 1.4;
}

.cfi-empty {
	padding: 12px;
	border: 1px solid #dcdcde;
	background: #fff;
	color: #50575e;
}

@media (max-width: 680px) {
	.cfi-gallery--two-column,
	.cfi-gallery--natural,
	.cfi-gallery--three-column {
		grid-template-columns: 1fr;
	}
}

