.einkauf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Kachel */
.einkauf-grid .listing-item-einkauf {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24%;
    border: 1px solid #057816;
    padding: 15px;
    box-sizing: border-box;
}

/* Foto */
.einkauffoto-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.einkauffoto-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Text */
.einkauf-info h4,
.einkauf-info h5,
.einkauf-info p,
.einkauf-beschreibung,
.einkauf-opening {
    margin: 5px 0;
    line-height: 1.3;
}

.einkauf-contact {
    margin-top: 10px;
}

.einkauf-contact a {
    color: #057816;
    text-decoration: none;
}

.einkauf-contact a:hover {
    text-decoration: underline;
}

/* Button */
.btn-zur-website {
    display: block;
    width: 100%;
    padding: 14px 16px;
    margin-top: 15px;
    background-color: #057816;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
    .einkauf-grid .listing-item-einkauf {
        width: 49%;
    }
}

@media (max-width: 600px) {
    .einkauf-grid .listing-item-einkauf {
        width: 100%;
    }
}