/* ===== Gewerbeverzeichnis ===== */
.listing-grid-gewerbe {
    display: grid;
    gap: 20px;
}

.listing-item-gewerbe {
    display: grid;
    grid-template-columns: 200px 1.5fr 1.5fr 1fr;
    gap: 15px;
    border-bottom: 1px solid #057816;
    padding: 15px 0;
    align-items: start;
}

/* Leere Logo-Spalte ausblenden */
.listing-grid-gewerbe .col-1-gewerbe:empty {
    display: none;
}

/* Erste Elemente oben bündig */
.listing-grid-gewerbe .col-2-gewerbe > :first-child,
.listing-grid-gewerbe .col-3-gewerbe > :first-child,
.listing-grid-gewerbe .col-4-gewerbe > :first-child {
    margin-top: 0;
}

/* ===== Logo ===== */
.logo-wrapper-gewerbe {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.logo-wrapper-gewerbe img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== Text ===== */
.listing-grid-gewerbe h3 {
    margin: 5px 0;
    font-size: 1.4em;
}

.gewerk-gewerbe {
    font-weight: bold;
    color: #555;
}

/* ===== Adresse kompakter ===== */
.listing-grid-gewerbe .col-3-gewerbe p {
    margin: 0;
    line-height: 1.25;
}

.listing-grid-gewerbe .col-3-gewerbe p + p {
    margin-top: 2px;
}

/* ===== Links Spalte 4 ===== */
.email-protected-gewerbe,
.telefon-link-gewerbe,
.website-link-gewerbe a {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.email-protected-gewerbe:hover,
.telefon-link-gewerbe:hover,
.website-link-gewerbe a:hover {
    color: #057816;
    text-decoration: underline;
}

/* ===== Tablet ===== */
@media only screen and (max-width: 900px) {
    .listing-item-gewerbe {
        grid-template-columns: 200px 1fr;
    }
}

/* ===== Mobile ===== */
@media only screen and (max-width: 600px) {
    .listing-item-gewerbe {
        grid-template-columns: 1fr;
    }

    .logo-wrapper-gewerbe {
        width: 100%;
        height: auto;
    }
}