/* Estilos para tarjetas de contenido reciente */
.item--list {
    display: flex;
    align-items: center;
    background-color: #1a1a1f;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 220px; /* Altura fija para mantener consistencia */
}

.item--list .item__cover {
    width: 150px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    padding-top: 0;
    margin-bottom: 0;
}

.item--list .item__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item--list .item__content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

.item--list .item__title {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item--list .item__category {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.item--list .item__category a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

.item--list .item__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.item--list .item__rate {
    font-size: 14px;
    color: #25a56a;
}

.item--list .item__list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.item--list .item__list li {
    font-size: 12px;
    background-color: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.item--list .item__description {
    font-size: 13px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
}

.item--list .item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.item--list .item__cover:hover .item__play {
    opacity: 1;
}

.item--list .item__play svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .item--list {
        height: auto;
        flex-direction: column;
    }

    .item--list .item__cover {
        width: 100%;
        height: 250px;
    }

    .item--list .item__content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .item--list .item__cover {
        height: 200px;
    }
}