body {
    margin: 0;
    font-family: var(--font-titels), sans-serif;
    background-color:  var(--backsingle-color);
    color: hsl(282.46deg 8% 15%);
}

.content-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.main-content {
    width: 75%;
    background: #fff;
    border-radius: 15px;
}

.sidebar {
    width: 25%;
    background: #fff;
    padding: 10px;
    border-right: 1px solid #ececec;
}

.post-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.post-author {
    font-size: 17px;
    color: #777;
    margin-bottom: 15px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 30px;
}

.post-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        margin-top: 32px;
        display: flex;
        align-items: center;
    }

    .sidebar {
        width: 100%;
        order: 2;
        border: none;
    }

    .main-content {
        width: 100%;
        order: 1;
    }
}


.post-tags {
    margin-top: 15px;
}

.post-tags a {
    display: inline-block;
    margin: 5px 3px;
    padding: 2px 10px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border: 2px solid #ececec;
    border-radius: 10px;
}

.post-tags a:hover {
    color: #0c6dc8;
}

.post-date{font-size: 1rem;
    display: flex;
    color: #777;
    font-family: var(--font-titels);
    gap: 5px;
    }



.post-meta-container {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    padding-top: 10px;
    align-items: center;
    margin-bottom: 15px;
}



.post-viewcomment {
    display: flex;
}

.post-views {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.post-comments{
    display: flex;
    align-items: center;
}



.post-comments img,
.post-views img {
    width: 31px;
    height: 31px;
}


.f-comment{
    font-family: var(--font-titels);
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
    }

.f-view{
    font-family: var(--font-titels);
    line-height: 0;
    font-size: 1rem;
    }
















    .video-section {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .video-box {
        position: relative;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .video-thumbnail {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }
    
    .video-player {
        width: 100%;
    }
    
    .video-player iframe,
    .video-player video {
        width: 100%;
        height: auto;
        min-height: 400px;
        border: none;
        border-radius: 12px;
        background: #000;
    }
    
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgb(0 0 0 / 17%);
        border: none;
        border-radius: 50%;
        padding: 20px;
        cursor: pointer;
        transition: all 0.3sease;
        line-height: 0;
    }
    
    .play-button img {
        width: 50px;
        height: 50px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    @media (max-width: 992px) {
        .video-player iframe,
        .video-player video {
            min-height: 250px;
        }
        
        .play-button {
            padding: 15px;
        }
        
        .play-button img {
            width: 40px;
            height: 40px;
        }
    }






    .video-box {
        position: relative;
    }
    
    .pause-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.3);
        z-index: 10;
        cursor: pointer;
    }
    
    .pause-icon {
        width: 50px;
        height: 50px;
    }

















