.cta-widget {
    position: relative;
}

.cta-widget .form {
    position: relative;
    padding-bottom: 50%;
    max-height: 210px;
}

.cta-widget .form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    pointer-events: none;
}

.cta-widget .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: var(--center-xy);
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
}

.cta-widget .title > span:first-of-type {
    font-family: var(--font-body-condensed);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-widget .title > span:last-of-type {
    font-family: var(--font-mencken);
    font-size: 30px;
    display: block;
}

@media (min-width: 64em) {
    .cta-widget .title::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        width: 55px;
        height: 55px;
        background: var(--skewed-button);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cta-widget .form {
        padding-bottom: 30%;
        min-height: 210px;
    }

    .cta-widget .title {
        top: 0;
        padding-top: 30px;
        transform: translateX(-50%);
    }

    .cta-widget .title > span:last-of-type {
        line-height: 26px;
        font-size: 42px;
    }

    .cta-widget .title > span:first-of-type {
        font-size: 19px;
    }

    .cta-widget .title::after {
        top: 112%;
    }
}

