﻿.apply_ellipsis {
    overflow: hidden; /* Hide the overflowed text */
    text-overflow: ellipsis; /* Apply the ellipsis when text overflows */
    white-space: nowrap;
}

.two_line_eclipse {
    display: -webkit-box; /* Enable flexbox-like behavior */
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    overflow: hidden; /* Hide the overflowed text */
    text-overflow: ellipsis; /* Apply the ellipsis when text overflows */
    white-space: normal;
    /* Add a minimum height to ensure it occupies at least 2 lines */
    min-height: 2.5rem;
    line-height: 1.2rem;
}
