.video-page .video-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    display: none;
}

.video-page .video-category-tab {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #d9d2c6;
    border-radius: 24px;
    text-decoration: none;
    color: #5a4a35;
    font-weight: 600;
    transition: all 0.2s ease;
}

.video-page .video-category-tab:hover,
.video-page .video-category-tab.active {
    background: #7d3914;
    border-color: #7d3914;
    color: #fff;
}

.video-page .video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.video-page .video-item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    /* padding: 10px; */
}

.video-page .video-thumb {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e4ddd2;
    background: #f6f1e8;
    aspect-ratio: 4/3;
}

.video-page .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.video-page .video-thumb .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    background: rgba(0, 0, 0, 0.28);
    transition: background 0.25s ease;
}

.video-page .video-thumb .play i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #d33a2c;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transform: scale(1);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.video-page .video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(36, 24, 13, 0.18);
}

.video-page .video-item:hover .video-thumb img {
    transform: scale(1.06);
}

.video-page .video-item:hover .video-thumb .play {
    background: rgba(0, 0, 0, 0.4);
}

.video-page .video-item:hover .video-thumb .play i {
    transform: scale(1.12);
    background: #ec4a3b;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.video-page .video-title {
    display: block;
    margin-top: 10px;
    margin-bottom: 6px;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    font-size: 17px;
    display: none;
}

.video-page .video-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6b6b6b;
    line-height: 1.5;
    font-size: 14px;
    display: none;
}

@media (max-width: 991.98px) {
    .video-page .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .video-page .video-grid {
        grid-template-columns: 1fr;
    }
}
.has-iframe .f-html{
	width: 1000px !important;
    max-width: 90%;
	padding:10px !important;
}