.vhs-teaser {
}

.vhs-teaser > a {
    background-color: #f1f3f5;
    display: flex;
    flex-direction: column;
    color: rgb(51, 51, 51);
}

.vhs-teaser .teaser-image {
    height: 200px;
    background-size: cover;
    width: 100%;
    z-index: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vhs-teaser .teaser-content {
    background-color: white;
    padding: 20px;
    margin: -30px 20px 20px;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}

.vhs-teaser .teaser-content:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.vhs-teaser .teaser-content .title {
    color: #808080;
    margin-bottom: 0.9rem;
}

.vhs-teaser .teaser-content .subtitle {
    margin-bottom: 0.9rem;
}

.vhs-teaser .teaser-content .link-button {
    margin-top: 1.8rem;
}

.vhs-teaser .teaser-content .link-button > span {
    background-color: #00285a;
    font-weight: 500;
}

.vhs-teaser .teaser-content .link-button > span:hover {
    background-color: rgba(0, 40, 90, 0.78);
}

.vhs-teaser .teaser-image::before {
    position: absolute;
    content: "";
    background-image: url("../images/grey_circle.svg");
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 75%;
    top: 25%;
    left: -50%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.vhs-teaser:hover .teaser-image::before {
    top: 22.5%;
    left: -47.5%;
    opacity: 95%;
    transition: all 0.25s ease-in-out;
}

.vhs-teaser .teaser-image::after {
    position: absolute;
    content: "";
    background-image: url("../images/blue_circle.svg");
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 50%;
    top: -65%;
    right: -56%;
    background-repeat: no-repeat;
    background-size: 100%;
    /* rotate: 180deg; */
    transform: rotate(180deg);
    -ms-transform: rotate(180deg); /* IE 9 */
    -moz-transform: rotate(180deg); /* Firefox */
    -webkit-transform: rotate(180deg); /* Safari and Chrome */
    -o-transform: rotate(180deg);
}

.vhs-teaser:hover .teaser-image::after {
    top: -62.5%;
    right: -54.5%;
    opacity: 75%;
    transition: all 0.25s ease-in-out;
}
