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: normal;
    margin: 0px;
}

.post-author {
    font-size: 17px;
    color: #777;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 30px;
}

.post-text {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        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: 22px;
    height: 22px;
       margin-right: 2px;
}


.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;
    }




.post-tags-new,
.post-categories-new {
    margin-top: 18px;
    font-size: 14px;
    line-height: 2;
}

.tags-label,
.categories-label {
       color: #2196f3;
    font-weight: normal;
    margin-left: 8px;
    background-color: #2196f30f;
    padding: 5px;
    border-radius: 10px;
}

.tags-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 6px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(92%) saturate(4125%) hue-rotate(201deg) brightness(99%) contrast(101%); /* رنگ آیکون رو هم آبی می‌کنه */
}




.post-tags-new a,
.post-categories-new a {
    display: inline-block;
    margin: 4px 3px;
    padding: 2px 10px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border: 2px solid #ececec;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.post-tags-new a:hover,
.post-categories-new a:hover {
    color: #2196f3;
    background-color: #f8fbff;
}