.video-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.video-item:last-child {
    border-bottom: none;
}

.video-item .post-media {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-item .post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.video-item .video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.video-item .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-item .post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
}

.video-item .post-title a {
    color: #333;
    text-decoration: none;
}

.video-item .post-title a:hover {
    color: #007bff;
}

.video-item .post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-item .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.video-item .post-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.video-item .post-author img {
    border-radius: 50%;
}

.video-item .post-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.video-item .post-stats i {
    margin-right: 4px;
}

.bf-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .bf-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bf-video-grid {
        grid-template-columns: 1fr;
    }
}

.bf-video-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.bf-video-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.bf-video-card-link {
    text-decoration: none;
    display: flex;
    gap: 15px;
    width: 100%;
}

.bf-video-card-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.bf-video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bf-video-card-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 11px;
    padding: 1px 4px;
    border-radius: 3px;
}

.bf-video-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bf-video-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
}

.bf-video-card-title:hover {
    color: #dc3544;
}

.bf-video-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.bf-video-card-views i,
.bf-video-card-comments i {
    margin-right: 4px;
}

.bf-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.bf-empty-state i {
    font-size: 64px;
    margin-bottom: 15px;
    color: #ddd;
}

.bf-archive-header {
    margin-bottom: 20px;
}

.bf-archive-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
}

.bf-archive-subtitle {
    font-size: 14px;
    color: #888;
}

.bf-404-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.bf-content-area {
    margin-bottom: 2rem;
}