.guides-list{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
}

.guide-item{
    text-align:center;
}

.guide-item img{
    width:100%;
    height:auto;
    border-radius:8px;
}

.guide-item img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    margin-bottom: 20px; 
}

.fuehrungen-list {

}

.fuehrungen-item {
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:30px;
    margin-bottom: 40px;
}

.fuehrungen-item img {
    width:100%; 
}

.bzv-text {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4em;
}

a.bzv-more-link {
    color: #555555;
    font-size: 21px;
    display: inline-block;
    padding: 5px 10px 5px 14px;
    background-image: url('../img/more-arrow.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 8px auto;
}

a.bzv-btn-buchungsanfrage {
    display: inline-block;
    color: #555555;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #555555;
    background-color: transparent;
    padding: 12px 24px;
    margin-top: 10px;
    transition: all 0.2s;
}
a.bzv-btn-buchungsanfrage:hover {
    border: 1px solid #285f2c;
    background-color: #eaeee5;
    color: #285f2c;
}



/* ab 768px = 2 Spalten */
@media (min-width:768px){
    .guides-list{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ab 992px = 3 Spalten */
@media (min-width:992px){
    .guides-list{
        /* grid-template-columns: repeat(3, 1fr); */
    }
}