/* CSS dla bloku zdjecie-czarne-tlo-symetria */

.zcts .zcts-image-wrap img {
	display: block;
}

/* Desktop: zostawiamy efekt "dociągnięcia" do dołu przez absolute */
@media (min-width: 992px) {
	.zcts .zcts-image-wrap {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}
}

/* Mobile/tablet: nie może nachodzić na tekst => normalny flow */
@media (max-width: 991.98px) {
	.zcts .zcts-image-wrap {
		position: static !important;
		max-height: none !important;
	}

	.zcts .zcts-image-wrap img {
		height: 240px;
		max-height: none !important;
		object-fit: cover;
	}
}