.full-cta {
    padding: 0 16px;
}

.full-cta .full-cta--inner {
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
}

@media screen and (min-width: 1024px) {
    .full-cta .full-cta--inner {
        padding: 80px 56px;
        flex-direction: row;
        align-items: flex-end;
        gap: 48px;
    }
}

.full-cta .full-cta--inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.32) 100%);
    z-index: -1;
    pointer-events: none;
}

.full-cta img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.full-cta p,
.full-cta h2 {
    text-wrap: balance;
    margin: 0;
}

.full-cta .btn {
    text-wrap: nowrap;
}