
.row .row.mol-row {
    width: calc(100% + 20px);
}
.molnewslisting .row .molnewsitem {
    float: left;
}
.mol-item {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 30px 0;
}
.mol-item__link {
    text-decoration: none;
    transition: 300ms;
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 100%;
    display: block;
}
.mol-item__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
}
.mol-item__wrap .gradient::before {
    z-index: 0;
}
.mol-item__image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mol-item__image.mol-item__image--hover {
    opacity: 0;
    z-index: 2 !important;
    transition: 300ms;
}
.mol-item__file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mol-item__image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.mol-item__image--hover .mol-item__file {
    object-fit: cover;
}
.mol-item__content {
    position: relative;
    padding-right: 28px;
    z-index: 5;
    width: 100%;
}
.mol-item__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    opacity: 0;
    z-index: 5;
    transition: 300ms;
}
.mol-item h4 {
    margin: 0;
    z-index: 5;
    color: #fff;
}
.mol-item .brow {
    margin: 0;
    transition: 300ms;
}
.mol-item__image::before {
    z-index: 0;
}
.mol-item__link:hover {
    color: #fff;
}
.mol-item__link:hover .brow {
    color: #fff;
}
.mol-item__link:hover .mol-item__arrow {
    opacity: 1;
}
.fade-move, /* apply transition to moving elements */
.fade-enter-active,
.fade-leave-active {
    transition: all 300ms ease;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}
/* ensure leaving items are taken out of layout flow so that moving
animations can be calculated correctly. */
.fade-leave-active {
    position: absolute;
}
/*@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .columns.molnewsitem:last-child:not(:first-child) {
        float: none;
        margin: 0 auto;
    }
}*/
/* Small only --- >640px */
@media screen and (max-width: 39.9375em) {
    .mol-row .columns {
        padding-bottom: 0;
    }
    .mol-item__arrow {
        opacity: 1;
    }
}