.split {
    display: grid;
    gap: 40px;
    margin: 15px 0;
}

.split.v-align-top {
    align-items: start;
}

.split.v-align-center {
    align-items: center;
}

.split.v-align-bottom {
    align-items: end;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.desc {
    margin-top: 15px;
}

.split .right ul {
    margin: 0;
}

/* BUTTON */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

/* BOTTOM BUTTON */
.btn-bottom {
    margin-top: 20px;
}

.btn-bottom.align-left {
    text-align: left;
}

.btn-bottom.align-center {
    text-align: center;
}

.btn-bottom.align-right {
    text-align: right;
}

/* HEADING RESET */
.ca-heading h1,
.ca-heading h2,
.ca-heading h3,
.ca-heading h4,
.ca-heading h5,
.ca-heading h6 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* SPLIT TO SINGLE COLUMN */
    .split {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* TOP ROW */
    .top-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* DYNAMIC MOBILE TITLE */
    .ca-heading .dynamic-heading {
        font-size: var(--mobile-title-size) !important;
        flex: 1;
        line-height: 1.3;
        margin: 0;
    }

    /* BUTTON */
    .top-row .btn {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    .top-row .btn,
    .split .left .btn,
    .btn-bottom {
        order: 0 !important;
        margin: 0;
        width: auto;
    }

    /* SPLIT LEFT */
    .split .left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .split .left .dynamic-heading {
        flex: 1;
    }

    .split .left .btn {
        flex-shrink: 0;
    }
}

.split-btn-wrap.align-left{
    text-align:left;
}

.split-btn-wrap.align-center{
    text-align:center;
}

.split-btn-wrap.align-right{
    text-align:right;
}

