.promo-cta {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    background: var(--dark-blue);
    border-radius: 30px;
    padding: 35px;
    position: relative;
    color: #fff;
}

.promo-cta h2 {
    color: #fff;
    font-size: 35px;
    font-weight: normal;
    line-height: 100%;
}

.promo-cta:before {
    content: "";
    width: calc(100% - 42px);
    height: calc(100% - 40px);
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 20px;
    background-image: url('data:image/svg+xml,<svg width="1011" height="400" viewBox="0 0 1011 400" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="1008" height="398" rx="19" stroke="%23197ABA" stroke-width="2" stroke-dasharray="15 15"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-cta:after {
    content: "";
    width: 31px;
    height: calc(100% - 40px);
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-image: url('data:image/svg+xml,<svg width="1011" height="400" viewBox="0 0 1011 400" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="1008" height="398" rx="19" stroke="%23197ABA" stroke-width="2" stroke-dasharray="15 15"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}


.promo-cta__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.highlighted-text {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.666em;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
    margin-bottom: 20px;
}


.highlighted-text:after {
    content: var(--content-highlight);
    position: absolute;
    left: 2px;
    top: 2px;
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    -webkit-text-stroke: 0.5px var(--white);
    color: var(--dark-blue);
    line-height: 1.666em;
    text-transform: uppercase;
    z-index: -1;
}

.promo-cta__image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.promo-cta__content {
    padding: 0;
    text-align: center;
}

.bg-white + .promo-cta.bg-white,
.half-image-text-icon-pullouts + .promo-cta.bg-white {
    margin-top: 0;
}

@media (min-width: 768px) {

    .highlighted-text {
        font-size: 40px;
    }

    .highlighted-text:after {
        font-size: 40px;
        left: 5px;
        top: 4px;
    }

    .promo-cta__content {
        padding: 10px;
    }

    .promo-cta__image {
        max-height: 300px;
        object-fit: cover;
    }

    .promo-cta__wrap {
        padding: 10px;
    }

    .promo-cta:before {
        width: calc(100% - 50px);
        height: calc(100% - 40px);
        left: 20px;
        top: 20px;
        background-image: url('data:image/svg+xml,<svg width="1011" height="400" viewBox="0 0 1011 400" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="1008" height="398" rx="19" stroke="%23197ABA" stroke-width="2" stroke-dasharray="15 15"/></svg>');
    }
    
    .promo-cta:after {
        width: 30px;
        height: calc(100% - 40px);
        right: 20px;
        bottom: 20px;
        background-image: url('data:image/svg+xml,<svg width="1011" height="400" viewBox="0 0 1011 400" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="1008" height="398" rx="19" stroke="%23197ABA" stroke-width="2" stroke-dasharray="15 15"/></svg>');
        background-position: right center;
    }
}

@media (min-width: 1200px) {
    .promo-cta {
        max-width: 1050px;
    }
    
    .promo-cta__wrap {
        flex-wrap: nowrap;
    }

    .promo-cta__image {
        width: 50%;
    }

    .promo-cta__content {
        text-align: left;
    }

    .highlighted-text {
        font-size: 86px;
        line-height: 1em;
    }

    .highlighted-text:after {
        font-size: 86px;
        left: 5px;
        top: 4px;
        line-height: 1em;
    }

    .promo-cta h2 {
        line-height: normal;
    }

    .promo-cta .btn-secondary:hover {
        background: var(--white);
        color: var(--dark-blue);
    }

    .promo-cta:before {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        left: 20px;
        top: 20px;
    }
    
    .promo-cta:after {
        width: calc(100% - 40px);
        height: 40px;
        left: 20px;
        bottom: 20px;
        background-position: bottom center;
    }
    
}