.cover-box {
    background-size: cover;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}
.component--invitatie-box .title {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.component--invitatie-box .title a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.component--invitatie-box.dark .title {
    color: #fff;
}
.component--invitatie-box {
    max-width: 270px;
    margin: 0 auto;
}
.component--invitatie-box .title a {
    color: inherit;
    text-decoration: inherit;
}

.component--invitatie-box .featured-image-src {
    position: absolute;
    object-fit: cover;
    width: 270px;
    height: 400px;
}
.component--invitatie-box img {
    transition: 0.3s ease-in-out;
}
.component--invitatie-box:hover img {
    transform: scale(1.2) rotate(3deg);
}
.component--invitatie-box:hover a.btn.btn-secondary.btn-cta,
.component--invitatie-box:focus a.btn.btn-secondary.btn-cta {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media(max-width: 767px){
    .component--invitatie-box .featured-image-src {
        width: 100%;
        height: 100%;
        object-position: center;
        border: 1px solid #80d0cc80;
    }
    .cover-box {
        width: 100%;
        height: 210px;
    }
    .component--invitatie-box {
        max-width: 100%;
    }
    .object-position-top-mobile .featured-image-src {
        object-position: top;
    }
}