
.post-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    gap: 12px;
    transition: transform 0.2s ease-in-out;
}

.post-item:hover {
    transform: scale(1.02);
}

.post-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-item h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-item .post-excerpt {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
