/* ========================================
   CA Split Feature Showcase
======================================== */

.ca-split-feature-showcase {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
}

.ca-split-feature-showcase::before {
    content: "";
    position: absolute;
    top: -28%;
    right: -10%;
    width: 48%;
    height: 82%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, var(--ca-sfs-accent-glow, rgba(99, 54, 177, 0.36)) 0%, rgba(99, 54, 177, 0.14) 34%, transparent 68%);
    opacity: var(--ca-sfs-glow-opacity, 1);
    filter: blur(2px);
}

.ca-split-feature-showcase__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.ca-split-feature-showcase__container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

.ca-split-feature-showcase--container-boxed .ca-split-feature-showcase__container {
    max-width: 1240px;
}

.ca-split-feature-showcase--container-wide .ca-split-feature-showcase__container {
    max-width: 1400px;
}

.ca-split-feature-showcase--container-full-width .ca-split-feature-showcase__container {
    max-width: none;
}

.ca-split-feature-showcase__inner {
    display: flex;
    justify-content: space-between;
}

.ca-split-feature-showcase--reverse .ca-split-feature-showcase__inner {
    flex-direction: row-reverse;
}

.ca-split-feature-showcase--valign-top .ca-split-feature-showcase__inner {
    align-items: flex-start;
}

.ca-split-feature-showcase--valign-center .ca-split-feature-showcase__inner {
    align-items: center;
}

.ca-split-feature-showcase--valign-bottom .ca-split-feature-showcase__inner {
    align-items: flex-end;
}

.ca-split-feature-showcase--split-50-50 .ca-split-feature-showcase__content,
.ca-split-feature-showcase--split-50-50 .ca-split-feature-showcase__visual {
    flex: 0 0 calc(50% - 20px);
}

.ca-split-feature-showcase--split-55-45 .ca-split-feature-showcase__content {
    flex: 0 0 calc(55% - 20px);
}

.ca-split-feature-showcase--split-55-45 .ca-split-feature-showcase__visual {
    flex: 0 0 calc(45% - 20px);
}

.ca-split-feature-showcase--split-60-40 .ca-split-feature-showcase__content {
    flex: 0 0 calc(60% - 20px);
}

.ca-split-feature-showcase--split-60-40 .ca-split-feature-showcase__visual {
    flex: 0 0 calc(40% - 20px);
}

.ca-split-feature-showcase--split-45-55 .ca-split-feature-showcase__content {
    flex: 0 0 calc(45% - 20px);
}

.ca-split-feature-showcase--split-45-55 .ca-split-feature-showcase__visual {
    flex: 0 0 calc(55% - 20px);
}

.ca-split-feature-showcase--no-card .ca-split-feature-showcase__content {
    flex: 0 1 760px;
}

.ca-split-feature-showcase__content {
    min-width: 0;
}

.ca-split-feature-showcase--content-center .ca-split-feature-showcase__content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ca-split-feature-showcase--content-right .ca-split-feature-showcase__content {
    margin-left: auto;
    text-align: right;
}

.ca-split-feature-showcase__eyebrow {
    display: block;
    margin: 0 0 18px;
    line-height: 1.1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ca-split-feature-showcase__title {
    margin: 0 0 22px;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.ca-split-feature-showcase__description {
    line-height: 1.65;
}

.ca-split-feature-showcase__description p {
    margin-top: 0;
    margin-bottom: 0;
}

.ca-split-feature-showcase__features {
    display: grid;
    margin-top: 34px;
}

.ca-split-feature-showcase--features-grid.ca-split-feature-showcase--feature-cols-1 .ca-split-feature-showcase__features {
    grid-template-columns: 1fr;
}

.ca-split-feature-showcase--features-grid.ca-split-feature-showcase--feature-cols-2 .ca-split-feature-showcase__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ca-split-feature-showcase--features-grid.ca-split-feature-showcase--feature-cols-3 .ca-split-feature-showcase__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ca-split-feature-showcase--features-list .ca-split-feature-showcase__features {
    grid-template-columns: 1fr;
}

.ca-split-feature-showcase--content-center .ca-split-feature-showcase__features {
    margin-right: auto;
    margin-left: auto;
}

.ca-split-feature-showcase--content-right .ca-split-feature-showcase__features {
    margin-left: auto;
}

.ca-split-feature-showcase__feature {
    display: block;
    min-width: 0;
    border: 1px solid;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.ca-split-feature-showcase__feature[href]:hover,
.ca-split-feature-showcase__feature[href]:focus {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ca-split-feature-showcase__feature-title {
    display: block;
    margin: 0;
    font-weight: 900;
    line-height: 1.25;
}

.ca-split-feature-showcase__feature-text {
    margin: 10px 0 0;
    line-height: 1.5;
}

.ca-split-feature-showcase__visual {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.ca-split-feature-showcase--reverse .ca-split-feature-showcase__visual {
    justify-content: flex-start;
}

.ca-split-feature-showcase__visual-card {
    display: flex;
    width: 100%;
    text-decoration: none;
    border: 1px solid;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ca-split-feature-showcase__visual-card[href]:hover,
.ca-split-feature-showcase__visual-card[href]:focus {
    transform: translateY(-5px);
    text-decoration: none;
}

.ca-split-feature-showcase__visual-card--shadow {
    box-shadow: 0 28px 72px rgba(2, 6, 23, 0.24);
}

.ca-split-feature-showcase__visual-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: inherit;
}

.ca-split-feature-showcase--card-left .ca-split-feature-showcase__visual-card-inner {
    align-items: flex-start;
    text-align: left;
}

.ca-split-feature-showcase--card-center .ca-split-feature-showcase__visual-card-inner {
    align-items: center;
    text-align: center;
}

.ca-split-feature-showcase--card-right .ca-split-feature-showcase__visual-card-inner {
    align-items: flex-end;
    text-align: right;
}

.ca-split-feature-showcase__icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
}

.ca-split-feature-showcase__card-spacer-top,
.ca-split-feature-showcase__card-spacer-bottom {
    flex: 1 1 auto;
    min-height: 42px;
}

.ca-split-feature-showcase__card-title {
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.ca-split-feature-showcase__card-description {
    max-width: 360px;
    margin: 36px 0 0;
    line-height: 1.55;
}

.ca-split-feature-showcase__card-description p {
    margin-top: 0;
    margin-bottom: 0;
}

.ca-split-feature-showcase__card-footer {
    margin: 0;
    line-height: 1.45;
}

.ca-split-feature-showcase__map{
    width:100%;
    height:100%;
    min-height:390px;
    overflow:hidden;
    border-radius:inherit;
}

.ca-split-feature-showcase__map iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

@media (max-width: 1100px) {
    .ca-split-feature-showcase__title {
        font-size: var(--ca-sfs-title-tablet-size) !important;
        letter-spacing: -0.055em;
    }
}

@media (max-width: 991px) {
    .ca-split-feature-showcase {
        padding: 64px 28px !important;
    }

    .ca-split-feature-showcase__inner,
    .ca-split-feature-showcase--reverse .ca-split-feature-showcase__inner {
        flex-direction: column;
        align-items: stretch !important;
        gap: 44px !important;
    }

    .ca-split-feature-showcase__content,
    .ca-split-feature-showcase__visual {
        flex: 0 0 auto !important;
        width: 100%;
        max-width: 100%;
    }

    .ca-split-feature-showcase__visual,
    .ca-split-feature-showcase--reverse .ca-split-feature-showcase__visual {
        justify-content: flex-start;
    }

    .ca-split-feature-showcase__visual-card {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .ca-split-feature-showcase {
        padding: var(--ca-sfs-mobile-padding) !important;
    }

    .ca-split-feature-showcase::before {
        width: 90%;
        right: -45%;
    }

    .ca-split-feature-showcase__eyebrow {
        margin-bottom: 14px;
    }

    .ca-split-feature-showcase__title {
        font-size: var(--ca-sfs-title-mobile-size) !important;
        line-height: 1.04;
        letter-spacing: -0.045em;
    }

    .ca-split-feature-showcase__description {
        font-size: 15px !important;
    }

    .ca-split-feature-showcase--features-grid .ca-split-feature-showcase__features {
        grid-template-columns: 1fr !important;
    }

    .ca-split-feature-showcase__visual-card {
        min-height: var(--ca-sfs-card-mobile-min-height, 340px) !important;
    }

    .ca-split-feature-showcase__visual-card-inner {
        padding: var(--ca-sfs-card-mobile-padding, 34px) !important;
    }

    .ca-split-feature-showcase__card-description {
        margin-top: 26px;
    }
}
