aside.posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 110px;
}

/* Sidebar Widgets */
.blog-widget {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--text-200-color);
}

h3.blog-widget__title {
    margin-bottom: 20px;
}

/* Tags List */
ul.tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

ul.tags-list a {
    background-color: var(--secondary-light-color);
    color: var(--secondary-dark-color);
    padding: 5px 10px;
    display: flex;
    border-radius: 100px;
    align-items: center;
    gap: 5px;
}

ul.tags-list a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

ul.tags-list a i {
    width: 14px;
    height: 14px;
}

ul.tags-list a span {
    margin-inline-start: 10px;
    background-color: var(--primary-color);
    border-radius: 100px;
    color: #FFF;
    padding: 0 5px;
    padding-top: 3px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.tag-item {
    animation: zoomOnScroll 0.3s ease forwards;
    animation-timeline: view();
    animation-range: entry;
}

/* Categories List */
ul.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.categories-list a {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: lighter;
}

ul.categories-list a:hover {
    color: var(--black);
}

/* Authors List */
ul.authors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.authors-list li {
    display: flex;
    gap: 10px;
}

ul.authors-list li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 100px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-300-color);
}

.author-info b {
    color: var(--black);
}

/* Recent Posts List */
ul.recent-posts-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

li.recent-post-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

a.recent-post-item__cover {
    flex-shrink: 0;
    animation: fadeIn .5s linear forwards;
}

a.recent-post-item__cover img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;

    animation: zoomOnScroll 0.3s ease forwards;
    animation-timeline: view();
    animation-range: entry;
}

h4.recent-post-item__title a {
    font-weight: normal;
}

.recent-post-item:hover a {
    color: var(--black);
}

.blog-index-head {
    font-size: 20px;
    font-weight: bold;
    border: 1px solid var(--text-200-color);
    border-radius: 20px;
    padding: 30px;
}

.blog-index-head:empty {
    display: none;
}