.channel-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.channel-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 7px 22px rgba(26, 22, 58, .16);
}

.channel-brand > span {
  display: grid;
  gap: 4px;
}

.channel-brand strong {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -.025em;
}

.channel-brand small {
  color: var(--violet-2);
  font-size: 8px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: .18em;
}

@media (max-width: 620px) {
  .channel-brand { gap: 10px; }
  .channel-brand img { width: 42px; height: 42px; flex-basis: 42px; }
  .channel-brand strong { font-size: 15px; }
  .channel-brand small { font-size: 7px; }
}
