.single-post-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px;
}

.post-breadcrumb {
    width: 100%;
    margin-bottom: 0;
    padding: 15px 0;
    background-color: #fff;
    margin-top: 100px;
}

.breadcrumb-nav {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-back {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-back:hover {
    color: #005a87;
    text-decoration: none;
}

.breadcrumb-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007cba;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

.breadcrumb-separator {
    color: #007cba;
    font-weight: normal;
}

.post-header {
    width: 100%;
    background-color: white;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.post-header-inner {
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.post-featured-image {
    flex-shrink: 0;
    width: 50%;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-title {
    color: #1e3a5f;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #007cba;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.single-post-container {
    display: flex;
    gap: 40px;
}

.post-content {
    flex: 2;
}

.post-sidebar {
    flex: 1;
    max-width: 350px;
}

.sidebar-title {
    color: #0050CC;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.related-post {
    display: flex;
    margin-bottom: 30px;
    gap: 15px;
}

.related-post-image {
    flex-shrink: 0;
    width: 200px;
    height: 135px;
    border-radius: 8px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-title {
    color: #041958;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    text-decoration: none;
}

.related-post-title:hover {
    color: #007cba;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 12px;
}

.meta-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-likes {
    display: flex;
    align-items: center;
    gap: 5px;
}


.post-header.video-wrapper {
    width: 100%;
    background-color: white;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin: 0 auto;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}
 .video-wrapper .post-header-inner{
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-direction: column-reverse;
}
 .video-wrapper  .post-featured-image {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .single-post-wrapper {
        padding: 10px;
    }
    
    .breadcrumb-nav {
        padding: 0 10px;
    }
    
    .post-header {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .post-header-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-featured-image {
        width: 100%;
        height: 200px;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .post-excerpt {
        font-size: 14px;
    }
    
    .post-meta {
        gap: 15px;
    }
    
    .single-post-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-sidebar {
        max-width: 100%;
    }
    
    .related-post-image {
        width: 100px;
        height: 70px;
    }
    
    .sidebar-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}