   .post-image img{
        max-width: 100% !important;
    }
    .article-wrapper{
        flex-direction: row-reverse;
    }
    .tab-posts-box {
    background: #fff;
    border-radius: var(--default-radius);
    box-shadow: var(--default-shadow);
    padding: 10px;
}

.tab-head {
    display: flex;
    gap: 5px;
}

.tab-btn {
    flex: 1;
    padding: var(--default-radius);
    text-align: center;
    background: #f2f2f2;
    border-radius: var(--default-radius);
    cursor: pointer;
    font-size: 12px;
}

.tab-btn.active {
    background: #ff004c;
    color: #fff;
}

.tab-content {
    display: none;
    margin-top: 10px;
}

.tab-content.active {
    display: block;
}

.tab-post-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.tab-post-item img {
    width: 55px;
    height: 55px;
    border-radius: var(--default-radius);
    object-fit: cover;
}

/* CONTACT */
.contact-icons-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.contact-item {
    background: #f7f7f7;
    padding: 10px;
    border-radius: var(--default-radius);
    text-align: center;
    font-size: 10px;
    text-decoration: none;
    color: #444;
    margin-bottom: 15px;
}

.contact-item:hover {
    background: #1e88e5;
    color: #fff;
}

.contact-item.svg {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    background: #f7f7f7;
    padding: 10px 0 0 0;
    align-items: center;    
    border-radius: var(--default-radius);
    text-decoration: none;
    color: #333;
    transition: .3s;
}

.contact-item.svg img {
    width: 22px;
    height: 22px;
    border-radius: var(--default-radius);
    fill: currentColor;
}

.contact-item.svg {
    color: #fff;
}

.contact-item.svg:hover {
    color: #fff;
    opacity: 0.8;
}

/* BRAND COLORS */
.contact-item.aparat { background:#e91e63; }
.contact-item.rubika { background:#6a1b9a; }
.contact-item.instagram { background:#c13584; }
.contact-item.instagram2 { background:#b02245; }
.contact-item.youtube { background:#ff0000; }

.related-products-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.related-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-radius: var(--default-radius);
    box-shadow: var(--default-shadow);
    transition: all .25s ease;
    text-decoration: none;
}

.related-product-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--default-shadow);
}

.rp-thumb {
    flex: 0 0 72px;
    display: block;
}

.rp-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--default-radius);
}

.rp-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rp-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
}

.rp-price {
    font-size: 13px;
    font-weight: 600;
    color: #0a7cff;
}

#csidebar > .post-image{
	display: none;
}
@media screen and (min-width: 1024px){
	#post-info > .post-image{
		display: none;
	}
	#csidebar > .post-image{
	display: block;
}
}