.einkauf-grid {
    margin: -1%;
}

.grid-sizer,
.einkauf-grid .listing-item-einkauf {
    width: 23%;
}

.einkauf-grid .listing-item-einkauf {
    margin: 1%;
    border: 1px solid #057816;
    padding: 18px;
    box-sizing: border-box;
    display: block;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.einkauf-grid .listing-item-einkauf:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.einkauffoto-wrapper {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.einkauffoto-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.einkauf-info h4 {
    margin: 0 0 6px;
    font-size: 1.1em;
}

.einkauf-info h5 {
    margin: 0 0 8px;
    font-size: 1em;
}

.einkauf-info p {
    margin: 4px 0;
    line-height: 1.35;
}

.einkauf-beschreibung {
    margin: 10px 0 15px;
    line-height: 1.45;
}

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

.einkauf-grid hr {
    border: none;
    border-top: 1px solid #000;
    margin: 15px 0;
    opacity: 0.2;
}

.einkauf-contact {
    margin-bottom: 12px;
}

.einkauf-contact p {
    margin: 0;
    line-height: 1.4;
}

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

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

.btn-zur-website {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 14px 16px;
    background-color: #057816;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.btn-zur-website::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.btn-zur-website:hover::after {
    width: 100%;
}

.btn-zur-website:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .grid-sizer,
    .einkauf-grid .listing-item-einkauf {
        width: 48%;
    }
}

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