.kachel {
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000;
    position: relative;
    box-sizing: border-box;
}
.kachel-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
    opacity: 0.7;
}
.kachel-content {
    position: relative;
    z-index: 2;
    margin: 20px 0 80px 0;
    color: #fff;
}
.kachel-content h2 {
    text-shadow: 0 0 1px rgba(0,0,0,0.25);
}
.kachel-content p {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,0.25);
}
a {
    position: relative;
    z-index: 2;
    border-radius: 8px!important;
}
@media (min-width: 768px) {
    .kachel {
        padding: 30px 50px;
    }
    .kachel-content p {
        font-size: 20px;
        max-width: 360px;
    }
}