/* Blog Aside Styles */
.blog-aside {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.aside-box {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.aside-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.aside-title h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Recent Posts */
.aside-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.aside-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.aside-posts li a {
    display: block;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aside-posts li a:hover {
    color: #007bff;
}

.aside-posts li .title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.aside-posts li .date {
    font-size: 12px;
    color: #999;
}

/* Categories */
.aside-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-categories li {
    margin-bottom: 10px;
}

.aside-categories li:last-child {
    margin-bottom: 0;
}

.aside-categories li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.aside-categories li a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* Tags */
.aside-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aside-tags li a {
    display: inline-block;
    padding: 5px 12px;
    background: #f8f9fa;
    color: #666;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aside-tags li a:hover {
    background: #007bff;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-aside {
        margin-top: 30px;
    }
} 