/* Force both images to be the same size */
.img-size {
    width: 100%;    
    height: 130px;  
    object-fit: fill; 
}
.img-size2{
    width: 100%;    
    height: 130px;  
    object-fit: fill; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .img-size2 {
        height: 200px; 
    }
    .img-size {
        width: 100%; /* or fixed width like 80px */
        height: auto;
    }
}

h5 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
}
