﻿.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 175px;
    min-height: 140px;
}
.title {
    margin-top: -10px;
    font-weight: 600;
}
.title-scroll {
    max-height: 120px; /* Adjust based on how many lines you want visible */
    overflow-y: auto;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
}

    /* Optional: Better scrollbar for Webkit */
    .title-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .title-scroll::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

    .title-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
