article.page-teaser {
    border: none !important;
    position: relative;
    margin: 0;
    padding: 0;
}

article.page-teaser a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.001;
    z-index: 1;
}

article.page-teaser .info__wrapper {
    position: relative;
}

article.page-teaser .info__wrapper h2.title {
    font-family: "Inter";
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    width: 85%;
    position: relative;
    margin-bottom: 24px;
    padding-top: 24px;
}

article.page-teaser .info__wrapper::before {
    content: '';
    background-image: url('/sites/default/files/inline-images/arrow-transparent.svg');
    background-size: 60px 40px;
    position: absolute;
    right: 0;
    width: 60px;
    height: 40px;
    top: calc(50% - 10px);
}

@media screen and (max-width: 1279px) {
    article.page-teaser .info__wrapper::before {
        background-size: 50px 30px;
        width: 50px;
        height: 30px;
    }
}

article.page-teaser .img__wrapper {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}

article.page-teaser .img__wrapper img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    article.page-teaser .info__wrapper h2.title {
        font-size: 25px;
        line-height: 30px;
    }
}

@media screen and (max-width: 767px) {
    article.page-teaser .info__wrapper h2.title {
        font-size: 22px;
        line-height: 25px;
    }

    article.page-teaser .img__wrapper img {
        max-height: 240px;
    }
}