.channels-sec {
  padding: 90px 20px;
  background: #f7f8fc;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.inner {
  max-width: 900px;
  margin: auto;
}

.channels-sec h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.channels-sec p {
  color: #666;
  margin-bottom: 40px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 35px;
}

.channel-card {
  background: white;
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.channel-card:hover {
  transform: translateY(-3px);
}

.icon {
  width: 20px;
  height: 20px;
  color: #444;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #111;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.cta-btn:hover {
  opacity: 0.85;
}