.preview {
  text-align: center;
  background: #FFF6EA;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.preview h1 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}

.content_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.channels {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.channels img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 4px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channels img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.channels h2 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  word-wrap: break-word;
   font-family: 'Poppins', sans-serif;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .preview {
    padding: 40px 15px;
  }

  .preview h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .channels img {
    width: 130px;
    height: 130px;
  }

  .channels h2 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .content_box {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
  }

  .channels img {
    width: 110px;
    height: 110px;
  }

  .channels h2 {
    font-size: 13px;
  }
}
