.channel-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.channel-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 14px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.channel-option:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.channel-option:has(input:checked) {
  border-color: rgba(8, 122, 56, .48);
  background: linear-gradient(180deg, #fff, #f0fbf5);
  box-shadow: 0 12px 28px rgba(8, 122, 56, .12);
}

.channel-option input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.channel-option-body {
  display: grid;
  gap: 5px;
}

.channel-option-body strong {
  color: var(--ink-strong);
  font-size: 18px;
  letter-spacing: -.03em;
}

.channel-option-body em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 1000;
}

.channel-option-body small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .channel-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
