.info-card-content {
    /* width: 230px; */
    font-family: Arial, sans-serif;
    max-height: 220px; 
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
}
/* .info-card-content:after{
    content: "020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
} */
.cardImage {
    width: 82px;
    height: 82px;
    overflow: hidden;
    border-radius: 14px;
}
.infoText {
    width: calc(100% - 90px);
    float: right;
}
.infoText h3 { padding-bottom: 5px; }
.infoText .infoDesc {
    overflow: hidden;
    text-overflow: ellipsis; line-height: 16px;
    display: -webkit-box; color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.infoText .takeThereBut {
    margin-left: 0px;
    padding: 6px;
    margin-top: 8px;
}
.info-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.additional-info {
    margin-top: 10px;
}
/* Style the scrollbar */
.info-card-content::-webkit-scrollbar {
    width: 8px; 
}

/* Track */
.info-card-content::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

/* Handle */
.info-card-content::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
}

/* Handle on hover */
.info-card-content::-webkit-scrollbar-thumb:hover {
    background: #555; 
}