.media-image-wrapper {
    width: 100%;
    height: 220px;  
    overflow: hidden;
    border-radius: 10px;
}

.media-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-image-wrapper img:hover {
    transform: scale(1.05);
}

.media-box-title {
    text-align: start;
    font-weight: 600;
}

/* Custom 5-column grid support */
@media (min-width: 768px) {
    .row-cols-5 > .col,
    .custom-col-5 {
        flex: 0 0 auto;
        width: 20%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}
