/* TryDo Blog Custom Styling */

/* Blog Meta Styles */
.blog-meta {
    font-size: 14px;
    color: #666;
}

.blog-meta i {
    margin-right: 5px;
    color: #f39c12;
}

.blog-meta li {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

/* Blog Excerpt */
.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

/* Blog Tags */
.blog-tags {
    margin-bottom: 20px;
}

.blog-tags h6 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.tag-item {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    margin: 0 5px 5px 0;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #f39c12;
    color: white;
    text-decoration: none;
}

/* Blog Share */
.blog-share {
    margin-bottom: 20px;
}

.blog-share h6 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.social-share .social-item {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f8f9fa;
    color: #666;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share .social-item:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-2px);
}

/* Blog Content Styling */
.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin: 25px 0 15px;
    color: #222;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content blockquote {
    border-left: 4px solid #f39c12;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
}

/* Responsive Blog Styles */
@media (max-width: 767px) {
    .blog-meta {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .blog-meta li {
        margin: 0 10px 10px 0;
        font-size: 12px;
    }
    
    .blog-share {
        text-align: center;
    }
    
    .blog-tags {
        text-align: center;
    }
}

/* Empty State Styling */
.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-state h3 {
    color: #666;
    margin-bottom: 15px;
}

.blog-empty-state p {
    color: #999;
    font-size: 16px;
}

/* Blog Pagination */
.rn-pagination {
    margin-top: 40px;
}

.rn-pagination .pagination {
    justify-content: center;
}

.rn-pagination .page-link {
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 4px;
}

.rn-pagination .page-link:hover,
.rn-pagination .page-item.active .page-link {
    background: #f39c12;
    border-color: #f39c12;
    color: white;
}