* {
  box-sizing: border-box;
}


.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

@media (max-width: 600px) {
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


 /*---------- CARD ---------- */
.channel-card {
  background: #007aff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.channel-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #eee;
}

.channel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-title {
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

