/* URL 链接卡片样式 */

.url-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  background: #f0f4ff;
  border: 1px solid #d0daf0;
  border-radius: 5px;
  color: #3b5bdb;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  max-width: 280px;
  vertical-align: middle;
  transition: background 0.15s, border-color 0.15s;
  box-sizing: border-box;
}

.url-link:hover {
  background: #e0e8ff;
  border-color: #b0c0e8;
  color: #2a45a0;
}

.url-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
