/* استایل سایدبار */
.widgetinner {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
}

.blog_widget {
    margin-bottom: 30px;
}

.blog_widget h4 {
    border-bottom: 2px solid #1a472a;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #1a472a;
}

.search_box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
}

.search_box input:focus {
    outline: none;
    border-color: #1a472a;
}

.blog_social {
    display: flex;
    gap: 10px;
}

.blog_social .social_link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a472a, #2d6a3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog_social .social_link:hover {
    transform: translateY(-3px);
    background: #f39c12;
}

.blog_social .social_link i {
    color: white;
    font-size: 18px;
}

.panel-title a {
    display: block;
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.panel-title a:hover {
    color: #1a472a;
    padding-right: 5px;
}



.blog_info {
    padding: 20px;
        border-radius: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.headline02 {
    color: #1a472a;
}

.social-share {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.social-wraps {
    display: flex;
    gap: 10px;
}

.social-wraps a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-wraps a:hover {
    transform: translateY(-3px);
}

.telegram-icon {
    background: #0088cc;
    color: white;
}

.instagram-icon {
    background: #e4405f;
    color: white;
}

/* ریسپانسیو */
@media (max-width: 992px) {
    .innerWrapper {
        flex-direction: column;
    }
    

    
    .widgetinner {
        width: 100%;
    }
}