.full-width-image-block-container .image {
    position: relative;
    max-height: 600px;
    width: 100%;
}
.field--name-field-full-width-img {
    width: 100%;
}
.field--name-field-full-width-img img {
    object-fit: cover;
    max-height: 600px;
    width: 100%;
}
.full-width-image-block-container .caption {
    background-color: var(--transparent-white);
    border-radius: 10px;
    color: var(--dark-gray);
    font-size: 1.4em;
    font-family: myriad-pro, Arial, sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    padding: 15px 20px;
    margin-right: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}
.full-width-image-block-container .caption span {
    margin-right: 5px;
    font-weight: 700;
}
@media screen and (max-width: 1070px) {
    .full-width-image-block-container .image {
        max-height: 500px;
    }
    .field--name-field-full-width-img img {
        max-height: 500px;
    }
}
@media screen and (max-width: 520px) {
    .full-width-image-block-container .image {
        max-height: 300px;
    }
    .field--name-field-full-width-img img {
        max-height: 300px;
    }
    .full-width-image-block-container .caption {
        background-color: none;
        border-radius: unset;
        position: relative;
        bottom: unset;
        left: unset;
    }
}