.post-tags-wrapper {
    margin: 32px 0 0 0;
    padding: 18px 0 0 0;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 0;
}
.post-tags-title {
    font-size: 15px;
    color: #888;
    margin-right: 10px;
    flex-shrink: 0;
}
.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.post-tag-item {
    display: inline-block;
    background: #f3f6fa;
    color: #2563eb;
    font-size: 14px;
    padding: 4px 14px;
    border-radius: 16px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-right: 4px;
}
.post-tag-item:hover {
    background: #2563eb;
    color: #fff;
} 