.marketplace-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.marketplace-item {
  display: flex;
  align-items: center;
  padding: 10.5px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: filter .2s, box-shadow .2s;
  justify-content: center;
}

.detail .marketplace-item__icon {
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
  flex-shrink: 0;
}

.marketplace-item__name {
  line-height: 1;
}

.marketplace-item:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #fff;
}