/*-------------------------------------------*\
  World's Borough Block Styles
\*-------------------------------------------*/

.worlds-borough-block {
    background: var(--green);
	position: relative;
	overflow: hidden;
    font-family: var(--font-alt-2);
}

/* Hero Section */
.worlds-borough-block__hero {
	position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    margin-bottom: 2%;
	width: 95%;
	height: 70vh;
	min-height: 500px;
}

.worlds-borough-block__hero-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.worlds-borough-block__hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.worlds-borough-block__sales-overlay {
        font-family: var(--font-alt-2);
	position: absolute;
	bottom: 120px;
	left: 120px;
	z-index: 2;
}

.worlds-borough-block__sales-overlay .sales-text {
	font-size: 4rem;
        font-family: var(--font-alt-2);
	color: var(--chartreuse);
	margin: 0;
	line-height: .8;
}

/* Content Section */
.worlds-borough-block__content-section {
	background-color: var(--green);
	padding: 250px 0;
	min-height: 40vh;
}

.worlds-borough-block__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.worlds-borough-block__content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: flex-start;
}

.worlds-borough-block__heading-column {
	padding-right: 40px;
}

.worlds-borough-block__main-heading {
	font-size: 12rem;
        font-family: var(--font-alt-2);
	font-weight: bold;
	color: #B5A48F;
	margin: 0;
	line-height: .9;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.worlds-borough-block__content-column {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.worlds-borough-block__content-column img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.worlds-borough-block__content-box {
	padding: 60px;
	width: 100%;
	max-width: 550px;
	min-height: 450px;
}

.worlds-borough-block__content-box p {
	color: #333;
	font-size: 1.1rem;
	line-height: 1.6;
	margin: 0 0 20px 0;
}

.worlds-borough-block__content-box p:last-child {
	margin-bottom: 0;
}

.worlds-borough-block__content-box h3,
.worlds-borough-block__content-box h4,
.worlds-borough-block__content-box h5,
.worlds-borough-block__content-box h6 {
	color: #333;
	margin: 0 0 15px 0;
}

.worlds-borough-block__content-box ul,
.worlds-borough-block__content-box ol {
	color: #333;
	margin: 0 0 20px 0;
	padding-left: 20px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.worlds-borough-block__hero {
		width: 95%; /* Keep hero image at full width */
		height: 70vh; /* Keep original height */
		min-height: 500px; /* Keep original min-height */
	}
	
	.worlds-borough-block__content-column img {
		width: 50%; /* Reduce content images by 50% on tablet */
		max-width: 50%;
		margin: 0 auto; /* Center the image */
		display: block;
	}
	
	.worlds-borough-block__content-wrapper {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	
	.worlds-borough-block__heading-column {
		padding-right: 0;
		text-align: center;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 6rem;
	}
	
	.worlds-borough-block__content-column {
		justify-content: center;
	}
	
	.worlds-borough-block__container {
		padding: 0 20px;
	}
	
	.worlds-borough-block__sales-overlay {
		bottom: 40px;
		left: 40px;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.worlds-borough-block__hero {
		width: 95%; /* Keep hero image at full width on mobile */
		height: 50vh; /* Reasonable mobile height */
		min-height: 400px; /* Reasonable mobile min-height */
	}
	
	.worlds-borough-block__content-column img {
		width: 50%; /* Reduce content images by 50% on mobile */
		max-width: 50%;
		margin: 0 auto; /* Center the image */
		display: block;
	}
	
	.worlds-borough-block__content-section {
		padding: 60px 0;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 5rem;
	}
	
	.worlds-borough-block__content-box {
		padding: 40px;
		min-height: 300px;
	}
	
	.worlds-borough-block__sales-overlay {
		bottom: 20px;
		left: 20px;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 2rem;
		letter-spacing: 1px;
	}
}

@media (max-width: 480px) {
	.worlds-borough-block__hero {
		width: 95%; /* Keep hero image at full width on small mobile */
		height: 50vh;
		min-height: 400px;
	}
	
	.worlds-borough-block__content-column img {
		width: 50%; /* Keep content images at 50% on small mobile */
		max-width: 50%;
		margin: 0 auto; /* Center the image */
		display: block;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 4.5rem;
	}
	
	.worlds-borough-block__content-box {
		padding: 30px;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 1.8rem;
	}
}

.ds-main > * {
    margin-top: 0vw !important;
    margin-bottom: 0vw !important;
}

.ds-main > *:first-child {
    margin-top: 0vw !important;
    margin-bottom: 0vw !important;
    padding-top: 0vw !important;
}