.download-channel-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.download-channel-heading > strong {
  min-width: 0;
  overflow: hidden;
  color: #253149;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.download-channel-heading .broken-link-trigger {
  width: auto;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 0 auto;
  grid-column: auto;
  padding: 0 3px;
  border-width: 2px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.download-channel-heading .broken-link-trigger i {
  font-size: 10px;
}

.download-go {
  height: 44px;
  font-size: 17px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
}

.download-go i {
  margin-left: 8px;
  font-size: 18px;
  transition: transform .2s ease;
}

.download-go:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3f86ff, #174fcf);
  box-shadow: 0 14px 28px rgba(31, 84, 201, .38);
  filter: saturate(1.12);
}

.download-go:hover i {
  transform: translate(2px, -2px);
}

.download-go:active {
  transform: translateY(0);
  box-shadow: 0 7px 15px rgba(31, 84, 201, .26);
}

@media (max-width: 480px) {
  .download-channel-heading {
    gap: 5px;
  }

  .download-channel-heading .broken-link-trigger {
    height: 23px;
    font-size: 10px;
  }
}
