@media screen and (min-width:992px) {
    .module {
        width: 100%;
        margin: 0 0 1em 0;
        overflow: hidden;
    }

    .module p {
        margin: 0;
    }

    .line-clamp {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
    }

    .fade {
        position: relative;
        height: 3.6em; /* exactly three lines */
    }

    .fade:after {
        content: "";
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
        height: 1.2em;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
    }

    .last-line {
        height: 3.6em; /* exactly three lines */
        text-overflow: -o-ellipsis-lastline;
    }

    .ftellipsis {
        height: 3.6em;
    }

    /*html {
    --lh: 1.4rem;
    line-height: var(--lh);
}*/

    .overflow {
        --max-lines: 3;
        position: relative;
        max-height: 400px;
        overflow: hidden;
        padding-right: 1rem; /* space for ellipsis */
    }

    .overflow::before {
        position: absolute;
        content: "...";
        /*   inset-block-end: 0;
  inset-inline-end: 0; */
        bottom: 0;
        right: 0;
    }

    .overflow::after {
        content: "";
        position: absolute;
        /*   inset-inline-end: 0; */
        right: 0;
        width: 1rem;
        height: 1rem;
        background: white;
    }
}