/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #3a6351;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .yt-container,.single.video-g {
        width: 100%;
    }

}
@media screen and (max-width: 768px) {
    .sidebar {
    max-width: 330px;
}
    
}
/* Main Content */
.yt-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Video Section */
.video-section {
    border-radius: 16px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.video-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3a6351 0%, #5cc195 100%);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .yt-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .breadcrumb-container {
        padding: 0 1rem;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.3rem;
    }
}

.single.video-g {
    width: 100%;
    margin-bottom: 20px;
}
.single-wrap.video-card-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.single-imge.video-thumbnail-wrapper {
    width: 40%;
    margin-bottom: 0;
    max-height: 100px;
}
.single-imge.video-thumbnail-wrapper a img {
    height: 100px;
}
.single-imge.video-thumbnail-wrapper a button.pb-pos.play-button {
    width: 40px;
    height: 40px;
}
.single-info.video-actions {
    width: 55%;
}
.single-c.channel-view {
    flex-direction: column;
    gap: 10px;
}
.single-c.channel-view p {
    width: 100%;
}
.single-c.channel-view p.views {
    text-align: left;
}