/* Video Posts Module CSS */

/* Video overlay effects */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.image-box:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6600;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
    color: #ff6600;
}

/* Content type badges */
.content-type {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.type-badge {
    background: #ff6600;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

/* Notification styles */
.video-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-notification.show {
    transform: translateX(0);
}

.video-notification.success {
    background: #28a745;
}

.video-notification.error {
    background: #dc3545;
}

.video-notification.info {
    background: #17a2b8;
}

/* Additional styles for blog-like layout */
.filter-tabs-wrapper .filter-tabs .tab-btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.filter-tabs-wrapper .filter-tabs .tab-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.filter-tabs-wrapper .filter-tabs .tab-btn:hover,
.filter-tabs-wrapper .filter-tabs .tab-btn.active-btn {
    background: #ff6600;
    border-color: #ff6600;
}

.filter-tabs-wrapper .filter-tabs .tab-btn a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.filter-tabs-wrapper .filter-tabs .tab-btn:hover a,
.filter-tabs-wrapper .filter-tabs .tab-btn.active-btn a {
    color: white;
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    z-index: 3;
}

/* Improved blog layout */
.blog-standard-content .news-block-two {
    margin-bottom: 50px;
}

.blog-standard-content .news-block-two .inner-box {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.blog-standard-content .news-block-two:last-child .inner-box {
    border-bottom: none;
}

/* Better image positioning */
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-box img {
    transition: transform 0.3s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}
