﻿
.block-with-text {
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 5.6em;
    text-align: left;
    padding-right: 1em;
    word-break:break-word;
}

    .block-with-text:before {
        content: '...';
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .block-with-text:after {
        content: '';
        position: absolute;
        right: 0;
        width: 1em;
        height: 11em;
        margin-top: 0.2em;
        background: white;
    }

    .block-with-text:hover:after {
        background: #eeeeee;
    }
