/*-------------------------------------------*\
  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: 40px;
	left: 40px;
	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: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 60px;
}

.worlds-borough-block__heading-column {
	width: 100%;
}

.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__button-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.worlds-borough-block__btn {
    display: inline-block;
    background-color: var(--chartreuse);
    color: var(--green);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.worlds-borough-block__btn::before,
.worlds-borough-block__btn::after {
    display: none !important;
}

.worlds-borough-block__btn:hover {
    background-color: #ceff00;
    transform: scale(1.01);
    color: var(--green);
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.worlds-borough-block__btn:focus {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.worlds-borough-block__btn:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.worlds-borough-block__hero {
		width: 95%;
		height: 70vh;
		min-height: 500px;
	}
	
	.worlds-borough-block__content-wrapper {
		gap: 50px;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 6rem;
	}
	
	.worlds-borough-block__container {
		padding: 0 20px;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.worlds-borough-block__hero {
		width: 95%;
		height: 50vh;
		min-height: 400px;
	}
	
	.worlds-borough-block__content-section {
		padding: 60px 0;
	}
	
	.worlds-borough-block__content-wrapper {
		gap: 40px;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 5rem;
	}
	
	.worlds-borough-block__sales-overlay {
		bottom: 20px;
		left: 20px;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 2rem;
		letter-spacing: 0;
		padding-bottom: 0px !important;
	}
	
	.worlds-borough-block__btn {
		padding: 12px 24px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.worlds-borough-block {
		width: calc(100vw - 60px);
		margin: 0 auto;
   }
	.worlds-borough-block__hero {
		width: 100%;
		height: 50vh;
	}
	
	.worlds-borough-block__content-wrapper {
		gap: 30px;
	}
	
	.worlds-borough-block__main-heading {
		font-size: 2.1rem;
	}
	
	.worlds-borough-block__sales-overlay .sales-text {
		font-size: 1.8rem;
	}
	.worlds-borough-block__content-section {
		min-height: 0;
	}
}


/*
.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;
}
*/