.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: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}

.top-row .dynamic-heading{
    margin: 0;
}

.top-row .btn{
    white-space: nowrap;
}

.desc {
    margin-top: 15px;
}

.split .right ul {
    margin: 0;
}

/* BUTTON */
.btn {
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    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: column;
        align-items: flex-start;
        gap: 16px;
    }


    /* DYNAMIC MOBILE TITLE */
    .top-row .dynamic-heading{
        width:100%;
        flex:none;
        font-size: var(--mobile-title-size) !important;
        line-height:1.3;
        margin:0;
    }

    /* BUTTON */
    .top-row .btn{
        align-self:flex-start;
        width:auto;
        padding:14px 16px;
        font-size:14px;
    }

    .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;
}

