/* Custom Table Cell Clamping Rule Optimization */
.text-clamp-cell {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maximum number of lines to display before appending dots */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Permits safe word wrapping */
    word-break: break-word;
    max-height: 4.5em; /* Safe layout bounds safeguard */
}
