.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list .tag-item {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 14px;
    font-size: 13px;
}

.tag-list .tag-item a {
    color: #333;
    text-decoration: none;
}

.tag-list .tag-item a:hover {
    text-decoration: underline;
}

.tag-list .tag-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background: #666;
    clip-path: polygon(
            0 0, 80% 0, 100% 50%,
            80% 100%, 0 100%, 20% 50%
    );
}