.vg-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
    padding: clamp(26px, 4vw, 48px);
    border-radius: var(--vg-radius-lg);
    background: var(--vg-secondary);
    color: rgba(255, 255, 255, .78);
}

.vg-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(160px, 26%, 320px);
    height: 100%;
    background: var(--vg-primary);
    opacity: .16;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.vg-cta__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--vg-primary);
    color: #fff;
}

.vg-cta__icon .vg-ico {
    width: 30px;
    height: 30px;
}

.vg-cta__text {
    flex: 1 1 320px;
    min-width: 0;
}

.vg-cta__title {
    color: #fff;
    font-size: clamp(1.3rem, 1.05rem + 1vw, 1.9rem);
}

.vg-cta__lead {
    margin-top: 6px;
}

.vg-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
