



.card-body{

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    background: #f1e8e8;

    width: 500px;
    height: 250px;

    border: none;
    border-radius: 15px;

    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 20px 10px;*/

    cursor: pointer;
}

.rest{

    width: 294.5px;
    height: 234px;

    margin: 7px;
}

img {

    height: 234px;
    aspect-ratio: 3/4;

    margin: 8px;

    border: none;
    border-radius: 7px;
}

.beschreibung{

    width: 294.5px;
    height: 184px;
}

.titel{

    padding: 10px;
}

h10{

    color: rgb(0, 27, 50);
}

.cta{

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    justify-content: right;

    width: 294.5px;
    height: 50px;
}

button{

    height: 35px;
    background: transparent;

    border: solid 1px #ff2020;
    border-radius: 7px;

    font-size: 0.75rem;

    z-index: 1;
}

.button-1{

    position: relative;
    margin-right: 18px;
}

.button-2{

    width: 35px;
    margin-right: 35px;
}

.button-1::after{

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff2020;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-in;

    cursor: pointer;
    z-index: -1;
}

.button-1:hover::after{

    transform: scaleX(1);
    transform-origin: left;
}