.sidebar-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgb(139, 6, 6);
}


.post-img img {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.recent-posts {
    display: flex;
    align-items: center;
    border-bottom: #999999 dotted 1px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}

.recent-posts:last-child {
    border-bottom: none;
}

.post-content {
    margin-left: 20px;
    a {
        color: black;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        &:hover {
            color: rgb(175, 5, 5);
        }
    }
    ul {
        list-style: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
        font-size: 14px;
        color: #555;
        line-height: 1;
    }
}