.hauptkacheln {
    padding: 70px 0;
}

.hauptkacheln-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.kachel {

    display: flex;
    flex-direction: column;

    background: #F2E2C5;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,.10);

    transition: all .3s ease;

    height: 100%;

}

.kachel:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,.16);

}

.kachel-bild {

    height: 230px;

    overflow: hidden;

}

.kachel-bild img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;

}

.kachel:hover img {

    transform: scale(1.05);

}

.kachel-inhalt {

    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 30px;

}

.kachel h2 {

    margin: 0 0 16px;

    font-size: 2rem;

    color: #244230;

}

.kachel p {

    margin: 0;

    color: #4B4B4B;

    line-height: 1.7;

    flex: 1;

}

/* ------------------------------------------------ */
/* BUTTON                                           */
/* ------------------------------------------------ */

.btn-primary {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    align-self: center;

    margin-top: 40px;

    padding: 15px 34px;

    background: #2E7D32;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    font-size: 1rem;

    border-radius: 999px;

    box-shadow: 0 10px 25px rgba(46,125,50,.30);

    transition: all .25s ease;

}

.btn-primary:hover {

    background: #256428;

    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(46,125,50,.35);

}

@media (min-width:768px) {

    .hauptkacheln-grid {

        grid-template-columns: repeat(2,1fr);

        align-items: stretch;

    }

}

@media (min-width:1100px) {

    .hauptkacheln-grid {

        grid-template-columns: repeat(3,1fr);

        align-items: stretch;

    }

}