/*///// Old browsers without grid support /////*/
.grid-wrapper-2,
.grid-wrapper-3,
.grid-wrapper-4 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.grid-item {
    width: 33%
}

.grid-item-2 {
    width: 50%;
}

.grid-item-3 {
    width: 66%;
}

.grid-item-4 {
    width: 100%;;
}


@supports (display: grid) {

    .grid-wrapper-3 {
        display: grid;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-column-gap: 36px;
        grid-row-gap: 64px;
        max-width: 960px;
        margin: 0 auto;
        padding: 30px 0px;
    }

    .grid-item {
        width: auto;
        grid-column: auto / span 1;
    }

    .grid-item-2 {
        width: auto;
        grid-column: auto / span 2;
    }

    .grid-item-3 {
        width: auto;
        grid-column: auto / span 3;
    }

    .grid-item-4 {
        width: auto;
        grid-column: auto / span 4;
    }

}
.teaser {
    background: white;
    overflow: hidden;
    padding: 0 15px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
    position: relative;
    margin-right: 2px;
    margin-bottom: 4px;
}

.teaser.teaser_sponsored {
    background: #eee;
    border: 1px solid #ececec;
    overflow: visible;
    padding: 0 18px 18px;
}

.teaser a {
    color: inherit;
    font-weight: inherit;
    -position: relative;
}

.teaser figure  {
    margin: 0 -18px;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: inline-block;
}

.teaser figure.figure--aspect-ratio {
    display: block;
    margin-bottom: 18px;
}

.aspect-ratio {
    width: 100%;
    padding-top: 75%;
    position:relative;
}

.aspect-ratio > div {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}
.scalepict {
    width: 100%;
    height: auto;
    display: block;
}
.teaser h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    margin: 10px 0 0 0;
}
@media only screen and (max-width: 958px) {
    .grid-wrapper-3 {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 36px;
        grid-row-gap: 36px;
    }
}
@media only screen and (max-width: 794px) {
    .grid-wrapper-3 {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 18px;
        grid-row-gap: 24px;
    }
}
@media only screen and (max-width: 680px) {
    .grid-wrapper-3 {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 18px;
        grid-row-gap: 24px;
    }
}
@media only screen and (max-width: 580px) {
    .grid-wrapper-3 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-column-gap: 18px;
        grid-row-gap: 18px;
    }
}
