.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.channel-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.channel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 1.25rem;
}

.channel-card__handle {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.channel-card__link {
  margin-top: auto;
  color: #0b1c39;
  font-weight: 600;
}
