.pushkatram {
  width: 100%;
}
.pushkatram .container_pk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pushkatram .item {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.pushkatram .thumbnail_pk {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.pushkatram .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.pushkatram .overlay-content {
  position: relative;
  background: #fff;
  width: 95%;
  height: 95%;
  padding: 10px;
  box-shadow: 0 0 20px #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pushkatram .overlay-content embed,
.pushkatram .overlay-content img {
  width: 100%;
  height: 100%;
}

.pushkatram .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s;
}

.pushkatram .close-btn:hover {
  background: rgba(255, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .pushkatram .container_pk {
    grid-template-columns: 1fr;
  }
}
