/* Container */
.hoo-video-list-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

#hoo-video-list-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Vertical List Card */
.hoo-video-list-card {
    display: flex;
    flex-direction: row;
    /* Two columns */
    width: 100%;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hoo-video-list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5da;
}

/* 1st Column: Image (16:9) */
.hoo-list-card-thumb {
    width: 35%;
    /* Adjust as needed */
    min-width: 250px;
    position: relative;
    /* Aspect Ratio Hack or Flex */
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
}

.hoo-list-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hoo-video-list-card:hover .hoo-list-card-thumb img {
    transform: scale(1.05);
}

/* 2nd Column: Content */
.hoo-list-card-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.hoo-list-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #24292e;
}

.hoo-list-card-meta {
    font-size: 0.85rem;
    color: #586069;
}

/* Pagination Styles */
.hoo-pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hoo-page-item {
    padding: 8px 12px;
    border: 1px solid #e1e4e8;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #0366d6;
    transition: all 0.2s;
    min-width: 36px;
    text-align: center;
}

.hoo-page-item:hover:not(:disabled):not(.hoo-dots) {
    background: #f6f8fa;
    border-color: #0366d6;
}

.hoo-page-item.hoo-active {
    background: #0366d6;
    color: #fff;
    border-color: #0366d6;
    cursor: default;
    font-weight: 600;
}

.hoo-page-item.hoo-dots {
    border: none;
    background: transparent;
    cursor: default;
    color: #586069;
}

.hoo-page-item.hoo-prev,
.hoo-page-item.hoo-next {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hoo-video-list-card {
        flex-direction: column;
    }

    .hoo-list-card-thumb {
        width: 100%;
        min-width: auto;
    }
}