.cut-bestseller-gallery__wrapper{
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
    row-gap: 40px;
    column-gap: 30px;
}

.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 0 10px #00000026;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link{
    display: flex;
    position: relative;
    height: 300px;
    flex-direction: column;
    overflow: hidden;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link:hover{
 opacity: unset;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link:hover .cut-bestseller-gallery--image{
    opacity: 0;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link:hover .cut-bestseller-gallery--image-hover{
    opacity: 1;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link .cut-bestseller-gallery--image,
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link .cut-bestseller-gallery--image-hover
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: opacity ease-in-out .2s;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link .cut-bestseller-gallery--image{
    opacity: 1;
    height: 100%;
}

.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link .cut-bestseller-gallery--image-hover{
    opacity: 0;
    height: 100%;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    gap: 15px;
    transition: bottom ease-out .4s;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card  .cut-bestseller-gallery--actions .cut-bestseller-gallery--button{
    background-color: #8f000a;
    border-radius: 6px;
    padding: 10px;
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    outline: none;
    border: 0;
    color: #FFFFFF;
    text-decoration: none;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--actions .cut-bestseller-gallery--title{
    display: flex;
    align-items: center;
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    height: 60px;
    text-align: center;
    margin-bottom: 0;
}
.cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--actions .cut-bestseller-gallery--preis{
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

@media screen and (max-width: 992px){
    .cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }
    .cut-bestseller-gallery__wrapper{
        max-width: 100%;
    }
    .cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container .cut-bestseller-gallery--grid-item .cut-bestseller-gallery--card .cut-bestseller-gallery--link{
        height: 250px;
    }
}


@media screen and (max-width: 768px){
    .cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container{
        grid-template-columns: 1fr;
    }
    .cut-bestseller-gallery__wrapper{
        padding: 10px;
    }
    .cut-bestseller-gallery__wrapper .cut-bestseller-gallery--grid-container{
        padding: 10px;
    }

}