.bildkachel-block {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 15px;
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition-duration: 0.2s;
}
.bildkachel-block-background {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    z-index: 1;
    border-radius: 8px;
    opacity: 0.96;
    transition-duration: 0.2s;
}
.bildkachel-block:hover {
    transform: scale(1.02);
}
.bildkachel-block:hover .bildkachel-block-background {
    opacity: 0.86;
}
.bildkachel-block h3 {
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,0.25);
    text-decoration: none;
    margin: 10px 0 80px 0;
    z-index: 2;
    position: relative;
}