/* Custom overrides for hugo-story theme */

/* Fix banner style1 image positioning so absolute img stays within its container */
.banner.style1 .image {
	position: relative;
}

/* 2x2 image grid: left image spans both rows, right column is split evenly */
.image-grid-2x2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
}

.image-grid-2x2 .grid-left {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.image-grid-2x2 .grid-right-top {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

.image-grid-2x2 .grid-right-bottom {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

/* Rajasthan spotlight: balanced 50/50 split */
#rajasthan-spotlight.spotlight.style1 .content {
	width: 50%;
}

#rajasthan-spotlight.spotlight.style1 .image {
	width: 50%;
	min-width: 0;
}

/* Isle of Skye spotlight: balanced 50/50 split */
#first.spotlight.style1 .content {
	width: 50%;
}

#first.spotlight.style1 .image {
	width: 50%;
	min-width: 0;
}

@media screen and (max-width: 736px) {
	#rajasthan-spotlight.spotlight.style1 .content,
	#rajasthan-spotlight.spotlight.style1 .image,
	#first.spotlight.style1 .content,
	#first.spotlight.style1 .image {
		width: 100%;
	}
}

/* Section divider between spotlights */
.section-divider {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	width: 60%;
	opacity: 0.6;
}

@media screen and (max-width: 736px) {
	.section-divider {
		width: 80%;
	}
}
