span.lbreak {
    display: block !important;
}

.llm_style .nectar-hor-list-item {
    display: flex;
    gap: 24px;
    flex-direction: row;
    box-sizing: border-box!important;
    position: relative!important;
    border-bottom: 0px solid rgba(0, 0, 0, .12) !important;
    padding: 0px;
    
}

.llm_style .nectar-list-item {
    padding: 14px 20px;
    background-color: rgba(240, 101, 39, 0.09) !important; /*rgba(218, 80, 39, 0.09) !important*/
    border-radius: 16px !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Your tablet CSS here */
    .llm_style .nectar-hor-list-item {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .llm_style .nectar-hor-list-item[data-columns="3"] .nectar-list-item, .llm_style .nectar-hor-list-item[data-columns="4"] .nectar-list-item {
        width: 48.5% !important;
        display: block;
    }
}


/* Mobile */
@media (max-width: 767px) {
    /* Your mobile CSS here */
    .llm_style .nectar-hor-list-item {
        gap: 16px;
        flex-direction: column;
    }
}