.blog-sidebar-list {
    display: flex;
    flex-direction: column;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-thumbnail-wrapper {
    flex-shrink: 0;
}

.post-thumbnail {
    object-fit: cover;
}

.post-thumbnail-placeholder {
    background-color: #f0f0f0;
}

.post-title {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.post-title a {
    text-decoration: none;
    color: inherit;
}

.post-title a:hover {
    text-decoration: underline;
}