.zs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* two columns */
  gap: 20px;
}
.zs-title {
  margin-top: 8px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.zs-card {
  cursor: pointer;
}

.zs-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.zs-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.zs-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  pointer-events: none;
}

/* Load More button */
.zs-loadmore-wrap {
  text-align: center;
  margin: 30px 0;
}
#zs-loadmore {
  padding: 12px 24px;
  font-size: 16px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
#zs-loadmore:hover {
  background: #005f8d;
  transform: scale(1.05);
}

/* Modal */
#zs-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#zs-modal-content {
  background: #000;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  max-width: 800px;
  width: 90%;
}
#zs-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
#zs-video-frame iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 667px) {
    .zs-grid { grid-template-columns: repeat(2, 1fr); 
 } 
    
}