
.teaseritem {
    position:relative;
    aspect-ratio: 1;
}
.imageteaserwrap .row .col-12:nth-child(5) .teaseritem,
.imageteaserwrap .row .col-12:nth-child(6) .teaseritem,
.imageteaserwrap .row .col-12:nth-child(7) .teaseritem,
.imageteaserwrap .row .col-12:nth-child(8) .teaseritem,
.imageteaserwrap .row .col-12:nth-child(9) .teaseritem {
    margin-top:20px;
}
.teaseritem a {
    color:var(--bs-white);
    text-decoration: none;
    width:100%;
    height:100%;
    display:block;
}

.teaseritem a:hover .teasertitle {
    font-size:var(--tfont);
    letter-spacing:1px;
    color:var(--bs-secondary);
}

.teaseritem a:hover .teasertext,
.teaseritem a:hover .teaserarrow{
    display: block;
    height:auto;
    opacity: 1;
    position:relative;
    visibility: visible;
}

.teaseritem a:hover .teaserimage:before {
    height:100%;
}
.teaseritem .teasertitle {
    margin-bottom:0;
    font-size:36px;
    word-break:break-word;
    text-transform:uppercase;
    font-family: var(--condensed);
    line-height:1;
    font-weight:700;
    color:var(--bs-white);
}
.teaserimage {
    display: block;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    position: absolute;
    z-index: 1;
}
.teaserimage img {
    width:100%;
    height:100%;
    object-fit: cover;
    filter: grayscale(.6);
}
.teaserimage:before {
    content:"";
    width:100%;
    height:35%;
    position:absolute;
    bottom:0;
    left:0;
    z-index: 2;
    display: block;
    transition:all 0.4s;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.teasercontent {
    position:absolute;
    padding:30px;
    z-index: 3;
    width:100%;
    left:0;
    bottom:0;
    font-family:var(--regular)
}
.teasertext p {
    margin-bottom:0;
    margin-top:15px;
    font-size:15px;
    line-height:22px;
    color:var(--bs-white);
}
.teasertext, .teaserarrow {
    opacity: 0;
    z-index: 3;
    height:0px;
    overflow:hidden;
    position: absolute;
    visibility: hidden;
}
.teaserarrow {
    width:37px;
    margin-top:var(--smallspace);
    height:28px;
}
@media screen and (max-width: 960px) {
    .teaseritem {
        margin-top:20px;
        aspect-ratio: 1 / 1.25;
    }
    .teasertext p {
        font-size:16px;
        line-height:24px;
    }
    .teaseritem .teasertitle {
        font-size:32px;
    }
    .teasertext, .teaserarrow {
        opacity: 1;
        z-index: 3;
        height: auto;
        overflow: auto;
        position: relative;
        visibility: visible;
    }
    .teaserimage:before {
        height:100%;
    }
    .teasercontent {
        padding:20px;
    }

    .imageteaserwrap .contenthead .globallink {
        margin-bottom: 0;
    }

}

