/*-------------------------------------------*\
  Hero with Content Block Styles
\*-------------------------------------------*/

.hero-with-content-block {
    position: relative;
    overflow: hidden;
        background-color: var(--green);
}

/* Hero Section with Background */
/* Hero Section with Background */
.hero-with-content-block__hero {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    width: 95%;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-with-content-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-with-content-block__logo-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 80%;
    padding: 40px;
}

.hero-with-content-block__logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Section */
.hero-with-content-block__content-section {
    background-color: var(--green);
    padding: 80px 0;
}

.hero-with-content-block__container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-with-content-block__main-heading {
    font-size: 4rem;
    font-family: var(--font-alt-2);
    font-weight: bold;
    color: var(--chartreuse);
    text-align: center;
    margin: 0 0 60px 0;
    line-height: .85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-with-content-block__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-with-content-block__column {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    font-family: var(--font-main);
}

.hero-with-content-block__column p {
    margin-bottom: 1.5em;
}

.hero-with-content-block__column p:last-child {
    margin-bottom: 0;
}

.hero-with-content-block__column strong,
.hero-with-content-block__column b {
    font-weight: 700;
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 1280px) {
	.hero-with-content-block__content-section {
        padding: 80px 3.8rem;
   }
}
@media (max-width: 1024px) {
    .hero-with-content-block__hero {
        height: 50vh;
        min-height: 400px;
		max-width: 1095px;
        width: calc(100% - 120px);
		margin: 0 auto;
    }
    
    .hero-with-content-block__logo-wrapper {
        max-width: 500px;
    }
    
    .hero-with-content-block__content-section {
        padding: 60px 0;
		max-width: 1095px;
        width: calc(100% - 120px);
		margin: 0 auto;
    }
    
    .hero-with-content-block__main-heading {
        margin-bottom: 50px;
    }
    
    .hero-with-content-block__columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-with-content-block__hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-with-content-block__logo-wrapper {
        max-width: 400px;
        padding: 30px;
    }
    
    .hero-with-content-block__content-section {
        padding: 50px 0;
    }
    
    .hero-with-content-block__container {
        padding: 0 20px;
    }
    
    .hero-with-content-block__main-heading {
        margin-bottom: 40px;
    }
    
    .hero-with-content-block__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-with-content-block__column {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-with-content-block__hero {
        min-height: 300px;
		width: calc(100vw - 60px);
        margin: 0 auto;
    }
    
    .hero-with-content-block__logo-wrapper {
        max-width: 300px;
        padding: 20px;
    }
    
    .hero-with-content-block__content-section {
        padding: 40px 0 20px 0;
		width: calc(100vw - 60px);
		margin: 0 auto;
    }
    
    .hero-with-content-block__main-heading {
        margin-bottom: 30px;
		font-size: 2.1rem;
    }
}



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

/* Ensure no margins from parent */
/*
.ds-main > * {
    margin-top: 0vw !important;
    margin-bottom: 0vw !important;
}

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