.viu-container-a78f5b19 {
    font-family: 'Poppins', sans-serif;
}

.viu-main-title-a78f5b19 {
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.viu-list-a78f5b19 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.viu-item-a78f5b19 {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #111;
    border-radius: 12px;
    padding: 10px;
    gap: 15px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.viu-item-a78f5b19:hover {
    background-color: #181818;
}

.viu-thumb-wrap-a78f5b19 {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.viu-thumb-a78f5b19 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.viu-item-a78f5b19:hover .viu-thumb-a78f5b19 {
    transform: scale(1.05);
}

.viu-badge-a78f5b19 {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #b71b16;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 8px;
    font-weight: 600;
    z-index: 2;
    border-bottom-right-radius: 6px;
}

.viu-content-a78f5b19 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.viu-title-a78f5b19 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}

.viu-title-a78f5b19 a {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.viu-excerpt-a78f5b19 {
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.viu-thumb-placeholder-a78f5b19 {
    width: 100%;
    height: 100%;
    background-color: #333;
}

@media (max-width: 767px) {
    .viu-item-a78f5b19 {
        flex-direction: column;
        align-items: flex-start;
    }
    .viu-thumb-wrap-a78f5b19 {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}