.hps-250-container {
	display: flex;
	flex-direction: column;
	padding: 60px 20px;
	overflow: hidden;
}

.hps-250-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.hps-250-col {
	flex: 1;
	min-width: 300px;
}

.hps-250-images {
	position: relative;
	height: 600px;
}

.hps-250-img-wrapper {
	position: absolute;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	will-change: transform;
}

.hps-250-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hps-250-img-wrapper:hover img {
	transform: scale(1.05);
}

/* Two Images Layout - Left */
.hps-250-images-left:not(.hps-250-single-image) .hps-250-img-large {
	top: 10%;
	left: 0;
	width: 70%;
	height: 70%;
	z-index: 1;
}

.hps-250-images-left:not(.hps-250-single-image) .hps-250-img-small {
	bottom: 0;
	right: 5%;
	width: 50%;
	height: 50%;
	z-index: 2;
}

/* Two Images Layout - Right */
.hps-250-images-right:not(.hps-250-single-image) .hps-250-img-large {
	top: 10%;
	right: 0;
	width: 70%;
	height: 70%;
	z-index: 1;
}

.hps-250-images-right:not(.hps-250-single-image) .hps-250-img-small {
	bottom: 0;
	left: 5%;
	width: 50%;
	height: 50%;
	z-index: 2;
}

/* Single Image Layout */
.hps-250-single-image .hps-250-img-large {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Layout Direction */
.hps-250-row-reverse {
	flex-direction: row-reverse;
}

.hps-250-heading {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1.2;
}

.hps-250-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #666;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 992px) {
	.hps-250-images {
		height: 450px;
	}
}

@media (max-width: 768px) {
	.hps-250-container {
		padding: 40px 15px;
	}
	
	.hps-250-row, 
	.hps-250-row-reverse {
		flex-direction: column;
	}

	.hps-250-images {
		height: auto;
		min-height: 400px;
		width: 100%;
	}

	.hps-250-images:not(.hps-250-single-image) .hps-250-img-large {
		width: 80%;
		height: 60%;
		top: 0;
		left: 0;
		right: auto;
	}

	.hps-250-images:not(.hps-250-single-image) .hps-250-img-small {
		width: 70%;
		height: 50%;
		bottom: 0;
		right: 0;
		left: auto;
	}

	.hps-250-heading {
		font-size: 2rem;
	}
}