.limit-1-row {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    min-height: 24px;
}

.limit-2-rows {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    min-height: 48px;
}

.limit-3-rows {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    min-height: 72px;
}

.limit-4-rows {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    min-height: 96px;
}

.blog-single-post-listing ul {
    /* Add dots as bullets */
    padding-left: 20px;
    /* Indent to align bullets correctly */
    margin: 0;
}

.blog-single-post-listing ul li {
    padding: 2px 0;
    margin: unset;
    list-style: disc;

    /* Customize text color */
}