#card-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px auto;
    justify-items: start;
    /*border:4px solid red; */
    width:1000px;
}

.card-slide {
    display: flex;
    flex-direction: row;
    background-color: #333;
    color: white;
    border-radius: 10px;
    padding: 5px;
    margin-left: -10px;
    width: 470px;
    box-sizing: border-box;
    vertical-align:top;
}
.card-slide img {
    width: 100px;
    overflow:hidden;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.card-slide>div {
    width: 60%;
    padding-left: 10px;
    box-sizing: border-box;
}