#VideoPostList .video-post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#VideoPostList .video-post-heading{
    font-size: 34px;
    font-weight: 600;
    color: #009DE0;
    padding: 0;
    margin: 0;
    display: block;
}

#VideoPostList .video-post-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 0px solid #ddd;
    padding: 8px 0;
}

#VideoPostList .video-thumb {
    position: relative;
    width: 260px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

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

#VideoPostList .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 12px;
}

#VideoPostList .video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

#VideoPostList .video-title a {
    color: #0096d6;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    font-size:28px;
    font-weight:500;
}

#VideoPostList .video-title a:hover {
    text-decoration: none;
}

#VideoPostList .video-date {
    color: #7A7A7A;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

#VideoPostList .video-link a {
    color: #0096d6;
    font-size: 14px;
    text-decoration: none;
}

#VideoPostList .video-link a:hover {
    text-decoration: underline;
}

.video-pagination {
    text-align: center;
    margin-top: 20px;
}
.video-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #0073aa;
}
.video-pagination .page-numbers:hover {
    background: #0073aa;
    color: #fff;
}
.video-pagination .current {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
}
``