/* News List Query
--------------------*/
@media screen {

    .mod_newslist {
        clear: both;
    }
    .mod_newslist .caption {
        display: none;
    }

    .layout_latest {
        position: relative;
        line-height: 1.2;
        color: var(--mut-black);
        box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.25);
    }

    .layout_latest .image_container {
        margin: 0;
    }

    .layout_latest .content_div {
        position: relative;
        padding: 1rem;
        flex: 1;
    }

    .layout_latest .image_container,
    .layout_latest .image_container a {
        display: block;
        height: 100%;
        overflow: hidden;
    }

    .layout_latest .image_container img {
        width: 100%;
        height: 100%;
        max-height: 250px;
        object-fit: cover;
        object-position: 50% 50%;
        transition: var(--transition);
    }

    .layout_latest .content_div:after {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 0.5rem;
        right: 1rem;
        width: 1rem;
        height: 1rem;
        
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        background-image: url(../images/icons/arrow-right.svg);
        /* https://cssfilterconverter.com/ */
        filter: brightness(0) saturate(100%) invert(33%) sepia(8%) saturate(0%) hue-rotate(143deg) brightness(98%) contrast(97%)
    }


    .layout_latest:hover img,
    .layout_latest .image_container a:hover img {
        transform: scale(1.05);
    }


    .layout_latest:hover {
        background-color: var(--mut-red);
        transition: var(--transition);
    }

    .layout_latest h3,
    .layout_latest a { 
        color: var(--mut-red);
    }

    .layout_latest:hover * {
        color: #fff !important;
    }

    .layout_latest:hover .content_div:after {   
        filter: brightness(0) invert(1);
    }

    .layout_latest .more,
    .layout_latest .teaser {
        display: none;
    }

    .layout_latest .headline a[href$=".pdf"]:after {
        content: " (PDF)";
        font-weight: 300;
    }




}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {

    .mod_newslist .inside_ce {
        display: flex;
        flex-wrap: wrap;
        --gap: 1.5rem;
        gap: var(--gap);
        --boxSize: calc((100% / 2) - var(--gap) + (var(--gap) / 2));
    }

    .layout_latest {
        margin: 0 !important;
        position: relative;
        transition: var(--transition);
        width: var(--boxSize);
    }

}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
    .mod_newslist .inside_ce {
        --boxSize: calc((100% / 3) - var(--gap) + (var(--gap) / 3));
    }

    .layout_latest .content_div {
        padding: 1.5rem;
    }

    .layout_latest .content_div:after {
        bottom: 1rem;
        width: 1.5rem;
        height: 1.5rem;
    }

    .layout_latest .image_container img {
        max-height: 170px;
    }


    .layout_latest .inside_news {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
        height: 100%;
    }
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* News List ends
--------------------*/










/* News Reader Query
--------------------*/
@media screen {

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* News Reader ends
--------------------*/






/* NOT USE */

/* mod_ContentNewsTeaser Query
--------------------*/
@media screen {
    .mod_ContentNewsTeaser {
        display: flex;
        align-items: flex-start;
    }

    .mod_ContentNewsTeaser .inside_ce{
        background-color: var(--mut-cream);
        padding: 1.5rem;
        border-radius: 0.75rem;
        display: flex;
        flex-flow: column;
        flex-grow: 1;
        height: 100%;
        box-sizing: border-box;
        font-family: 'Space Grotesk';
        font-style: normal;
        font-weight: 500;
    }

    .mod_ContentNewsTeaser .content_div {
        display: flex;
        flex-flow: column;
        flex-grow: 1;
    }

    .mod_ContentNewsTeaser .more {
        margin-top: auto;
        align-self: flex-end;
    }

    .mod_ContentNewsTeaser .img-div {
        margin-top: auto;
    }

    .mod_ContentNewsTeaser .inside_ce img {
        border-radius: 0.75rem;
    }

    .mod_ContentNewsTeaser .text-sideline {
        text-transform: uppercase;
        font-size: 0.875rem;
    }

    .mod_ContentNewsTeaser .text-sideline p:before {
        content: "";
        display: inline-block;
        background-image: url(../images/icons/dot.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position:  bottom center;
        width: 0.8rem;
        height: 0.8rem;
        margin-right: 0.35rem;
    }
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
    .mod_ContentNewsTeaser .inside_ce{
        padding: 1rem .75rem;
    }
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
    .mod_ContentNewsTeaser .inside_ce{
        padding: 1.5rem;
    }
}
/* mod_ContentNewsTeaser ends
--------------------*/
