.bierxl-wall {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 22px;
    width: 100%;
}

.bierxl-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 142px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    color: inherit;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.025);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bierxl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    border-color: #d3d3d3;
}

.bierxl-img-wrap {
    flex: 0 0 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bierxl-img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
}

.bierxl-content {
    min-width: 0;
}

.bierxl-content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #292929;
}

.bierxl-content p {
    margin: 3px 0 0;
    font-size: 15px;
    line-height: 1.4;
    color: #292929;
}

.bierxl-wall-empty {
    grid-column: 1 / -1;
    padding: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    background: #fff;
}

@media (max-width: 1280px) {
    .bierxl-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .bierxl-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .bierxl-wall {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .bierxl-card {
        flex: 0 0 82%;
        min-width: 270px;
        scroll-snap-align: start;
    }
}
