.channel-line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm, 8px);
  padding:var(--space-sm, 8px);
}
.channel-line-item[id] {
  cursor: pointer;
}
.channel-line-item[id]:hover {
  background:var(--color-surface-on-inverse-hover, #F8F8F9); 
  border-radius: var(--border-radius-border-radius-lg, 16px);
}
.channel-line-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.channel-line-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.channel-line-content {
  flex: 1;
}