/* Hero *********************/

.personalnews_hero {
    position: relative;
    margin-bottom: 48px;
    padding-top: 13px;
    height: 544px;
    box-sizing: content-box;
}

.personalnews_hero .img {
    width: 408px;
    height: 544px;
    z-index: 1;
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto 100%;
}

.personalnews_hero .cont {
    background-color: #fff;
    z-index: 2;
    position: absolute;
    height: 360px;
    bottom: 0;
    right: 0;
    left: 368px;
    padding: 25px 25px 15px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 0px) and (max-width: 1018px) {

    .personalnews_hero {
        height: 327px;
    }

    .personalnews_hero .img {
        width: 245px;
        height: 327px;
    }

    .personalnews_hero .cont {
        left: 225px;
        height: 290px;
        padding: 20px 20px 10px;
    }

    .personalnews_hero h1 {
        font-size: 32px !important;
    }

}

@media (min-width: 0px) and (max-width: 767px) {

    .personalnews_hero h1 {
        font-size: 28px !important;
    }

}

@media (min-width: 0px) and (max-width: 670px) {

    .personalnews_hero {
        height: auto;
    }

    .personalnews_hero .sub {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .personalnews_hero .img {
        position: static;
        display: block;
        margin: 0 auto;
    }

    .personalnews_hero .cont {
        position: static;
        height: auto;
        padding: 0;
        padding-top: 20px;
        border: none;
        box-shadow: none;
    }

    .personalnews_hero h1 {
        font-size: 20px !important;

        overflow: visible !important;
        display: block !important;
        -webkit-box-orient: horizontal !important;
        -webkit-line-clamp: none !important;
    }
}

.personalnews_hero .sub {
    font-size: 25px;
    font-weight: 400;
    color: #010101;
    font-style: italic;
    line-height: 24px;
    margin: 9px 0 18px;
}

.personalnews_hero h1 {
    color: #a9a794;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 14px;
    word-wrap: break-word;
    font-size: 41px;
    line-height: 1.3em;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.personalnews_hero .name {
    color: #010101;
}

.personalnews_hero .meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.personalnews_hero .meta .tdb-post-meta {
    margin-bottom: 0 !important;
}

.personalnews_hero .date {
    color: #767676;
    font-size: 11px;
    line-height: 1;
}


/* Startseite *********************/

.personalnews_home .title {
    margin-top: 50px;
}

.personalnews_home .block-title {
    margin-bottom: 0;
}

.personalnews_home .cont {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 4px;
}

@media (min-width: 768px) and (max-width: 1140px) {

    .personalnews_home .cont {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .personalnews_home .cont > a:last-child {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .personalnews_home .cont {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 0px) and (max-width: 480px) {
    .personalnews_home .cont {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.personalnews_home .cont > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding: 20px;
}

@media (min-width: 0px) and (max-width: 480px) {
    .personalnews_home .cont > a {
        padding: 10px;
    }
}

.personalnews_home .pic {
    border-radius: 9999px;
    border: 3px solid #CCC4AD;
    width: 180px;
    height: 180px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transition: transform .2s;
}
.personalnews_home .cont > a:hover .pic {
    transform: scale(1.05);
}

@media (min-width: 0px) and (max-width: 480px) {
    .personalnews_home .pic {
        width: 120px;
        height: 120px;
    }
}

.personalnews_home .name {
    color: #010101;
    font-weight: 400;
    word-wrap: break-word;
    font-size: 21px;
    line-height: 1.2em;
    text-align: center;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.personalnews_home .text {
    color: #767676;
    font-weight: 300;
    word-wrap: break-word;
    font-size: 13px;
    line-height: 1.3em;
    text-align: center;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}