/**
 * Fullscreen Image Block Styles
 */

.fullscreen-image-block {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.fullscreen-image__img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fullscreen-image-block {
		height: 60vh;
		min-height: 400px;
	}
}
