/*-------------------------------------------*\
  Full Width Image Block Styles
\*-------------------------------------------*/

.full-width-image-block {
	position: relative;
	overflow: hidden;
    font-family: var(--font-alt-2);
    /* Background color now set via inline style in PHP */
}

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

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

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

.full-width-image-block__text-overlay {
    font-family: var(--font-alt-2);
	position: absolute;
	bottom: 120px;
	left: 120px;
	z-index: 2;
}

.full-width-image-block__text-overlay .overlay-text {
	font-size: 4rem;
    font-family: var(--font-alt-2);
	color: var(--chartreuse);
	margin: 0;
	line-height: .9;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.full-width-image-block__text-overlay {
		bottom: 40px;
		left: 40px;
	}
	
	.full-width-image-block__text-overlay .overlay-text {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.full-width-image-block__hero {
		height: 50vh;
		min-height: 400px;
	}
	
	.full-width-image-block__text-overlay {
		bottom: 20px;
		left: 20px;
	}
	
	.full-width-image-block__text-overlay .overlay-text {
		font-size: 2rem;
		letter-spacing: 1px;
	}
}

@media (max-width: 480px) {
	.full-width-image-block__text-overlay .overlay-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;
}