.fso-cta {
    padding: 100px 0 64px;
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: relative;
}
section.fso-cta:before {
    content: "";
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-top-right-img.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}
.fso-cta__container {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 40px;
}

/* White card */
.fso-cta__card-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 45px;
    border-radius: 16px;
    padding: 65px 0;
    background: rgba(255, 255, 255, 0.87);
    backdrop-filter: blur(7px);
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.05);
}

/* Vertical divider */
.fso-cta__divider {
    flex-shrink: 0;
    width: 1px;
    background: #e5e7eb;
    align-self: stretch;
    margin: 0;
}

/* Individual CTA block */
.fso-cta__block {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 94px;
  max-width: 50%;
}
.fso-cta__block:last-of-type {
    padding: 0 94px 0 80px;
}

.fso-cta__eyebrow {
    font-size: 14px;
    font-weight: 450;
    color: #808080;
    line-height: 18px;
}
.fso-cta__heading {
    font-size: 27px;
    font-weight: 600;
    color: #000000;
    line-height: 34px;
    margin: 9px 0 6px;
}
.fso-cta__subtext {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 21px;
    margin: 0 0 27px;
  max-width: 320px;
}

/* Buttons */
a.fso-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s ease;
    align-self: flex-start;
}
a.fso-cta__btn--dark {
    background: #000000;
    color: #ffffff;
}
a.fso-cta__btn--ghost {
    background: transparent;
    color: #000000;
    border: 1.5px solid #000000;
}
a.fso-cta__btn:hover {
    opacity: 0.80;
    text-decoration: none;
}

/* Not Sure banner */
.fso-cta__not-sure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 21px;
}
a.fso-cta__selector-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    color: #3040CF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a.fso-cta__selector-link svg {
    margin-top: 3px;
}
a.fso-cta__selector-link:hover {
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 1024px) {
    .fso-cta__block {
        padding: 0 0 0 56px;
    }
    .fso-cta__block:last-of-type {
        padding: 0 56px 0 48px;
    }
    .fso-cta__heading {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .fso-cta {
        padding: 60px 0 48px;
    }
    .fso-cta__container {
        padding: 0 20px;
    }
    .fso-cta__card-wrapper {
        flex-direction: column;
        padding: 10px 0 30px;
        gap: 0;
    }
    .fso-cta__divider {
        width: auto;
        height: 1px;
        align-self: stretch;
        margin: 0 32px;
    }
    .fso-cta__block {
        padding: 32px 32px;
      max-width: 100%;
    }
    .fso-cta__block:last-of-type {
        padding: 32px 32px;
    }
}
@media (max-width: 480px) {
    .fso-cta__block {
        padding: 28px 20px;
    }
    .fso-cta__block:last-of-type {
        padding: 28px 20px;
    }
    .fso-cta__heading {
        font-size: 20px;
    }
    a.fso-cta__btn {
        width: 100%;
        justify-content: center;
    }
}
