.block-featured-project-full-width-with-headline {
    font-family: "Avenir Next", Avenir, sans-serif;
    font-weight: 400;
    padding-block: 5em;
    color: var(--color-glacier-dark);
}

.block-featured-project-full-width-with-headline .block-container {
    max-width: 1536px;
}

.block-featured-project-full-width-with-headline .header {
    display: grid;
    grid-template-areas: "headline"
                         "body-copy"
                         "cta";
    gap: 2em;
    margin-bottom: 2em;
    max-width: 992px;
    margin-inline: auto;
}

@media screen and (min-width: 700px) {
    .block-featured-project-full-width-with-headline .header {
        grid-template-areas: "headline headline"
                             "body-copy cta";
    }
}


.block-featured-project-full-width-with-headline .headline {
    font-family: "Avenir Next", Avenir, sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 3.75em;
    line-height: 1;
    grid-area: headline;
}

.block-featured-project-full-width-with-headline .body-copy {
    font-size: 1.25em;
    grid-area: body-copy;
}

.block-featured-project-full-width-with-headline .body-copy p:first-child {
    margin-top: 0;
}


.block-featured-project-full-width-with-headline .body-copy p:last-child {
    margin-bottom: 0;
}

.block-featured-project-full-width-with-headline .main-cta {
    grid-area: cta;
    align-self: end;
    justify-self: start;
}

.block-featured-project-full-width-with-headline .image-container {
    position: relative;
    aspect-ratio: 2/1;
}

.block-featured-project-full-width-with-headline .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.block-featured-project-full-width-with-headline .image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.block-featured-project-full-width-with-headline .image-overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mix-blend-mode: multiply;
    /* opacity: 0.55; */
}

.block-featured-project-full-width-with-headline .caption-overlay {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 3;
    mix-blend-mode: multiply;
    opacity: 0.55;
}

.block-featured-project-full-width-with-headline .caption-wrapper {
    position: absolute;
    left: 50%;
    height: 100%;
    width: 50%;
    max-width: 300px;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 4;
    padding: 2em;
    color: white;
    text-transform: uppercase;
}

@media screen and (min-width: 900px) {
    .block-featured-project-full-width-with-headline .image-overlay {
        width: 70%;
    }
    .block-featured-project-full-width-with-headline .caption-overlay {
        left: 70%;
        width: 30%;
    }
    .block-featured-project-full-width-with-headline .caption-wrapper {
        left: 70%;
        width: 30%;
    }
}

.block-featured-project-full-width-with-headline .image-container {
    position: relative;
}

.block-featured-project-full-width-with-headline .caption-copy p:first-child {
    margin-top: 0;
}

.block-featured-project-full-width-with-headline .secondary-cta {
    background-color: var(--color-canyon-coral);
    border-color: var(--color-canyon-coral);
}

@media screen and (min-width: 700px) {
    .block-featured-project-full-width-with-headline .logo {
        width: 28%;
    }
}

@media screen and (min-width: 900px) {
    .block-featured-project-full-width-with-headline .logo {
        width: 16%;
    }
}