    .post-slide4 {
        margin: 0 10px;
        background: #fff;
        box-shadow: 0 1px 2px rgba(43, 59, 93, .3);
        margin-bottom: 2em
    }

    .post-slide4 .post-info {
        padding: 5px 10px;
        margin: 0;
        list-style: none
    }

    .post-slide4 .post-info li {
        display: inline-block;
        margin: 0 5px
    }

    .post-slide4 .post-info li i {
        margin-right: 8px
    }

    .post-slide4 .post-info li .read {
        font-size: 11px;
        font-weight: 700;
        color: #7e828a;
        text-transform: uppercase
    }

    .post-slide4 .post-info li .read:hover {
        color: #1dcfd1;
        text-decoration: none
    }

    .post-slide4 .post-img {
        position: relative
    }

    .post-slide4 .post-img:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background: rgba(0, 0, 0, .6);
        transition: opacity .4s linear 0s
    }

    .post-slide4:hover .post-img:before {
        opacity: 1
    }

    .post-slide4 .post-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .post-slide4 .read {
        position: absolute;
        bottom: 30px;
        left: 50px;
        font-size: 14px;
        color: #fff;
        text-transform: capitalize;
        opacity: 0;
        transition: all .4s linear 0s
    }

    .post-slide4:hover .read {
        opacity: 1
    }

    .post-slide4 .read:hover {
        text-decoration: none;
        color: #1dcfd1
    }

    .post-slide4 .post-content {
        padding: 40px 15px;
        position: relative
    }

    .post-slide4 .post-author {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        position: absolute;
        top: -45px;
        right: 10px;
        overflow: hidden;
        border: 4px solid #fff
    }

    .post-slide4 .post-state {
        
        background-color: var(--mdn-primary-color);
        color: var(--mdn-text-color-on-primary);
        position: absolute;
        top: -50px;
        left: 0px;
        overflow: hidden;
    }


    .post-slide4 .post-author img {
        width: 100%;
        height: auto
    }

    .post-slide4 .post-title {
        text-decoration: unset;

        -webkit-line-clamp: 2;
        /* Anzahl der Zeilen, die angezeigt werden sollen */
        -webkit-box-orient: vertical;
        display: -webkit-box;

        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.9rem;
        /* Zeilenhöhe */
        align-items: center;
        color: var(--mdn-primary-color);
        /* Maximale Höhe auf zwei Zeilen setzen */
        max-height: calc(2 * 1.9rem);
        height: min-content;
        margin:0 0 0 0;
        font-size: 1.5rem;
        font-weight: 700;
        transition: all .3s linear 0s;
    }

    .post-slide4 .post-title-container {
        height: calc(2 * 1.9rem);
        margin: 0 0 10px 0;

    }


    .post-slide4 .post-description {
        font-size: 13px;
        color: #555;
        margin-bottom: 20px;
    }