.pwsp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pwsp-item {
  width: 300px;
  text-align: center;
  cursor: pointer;
}
.pwsp-thumb {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.pwsp-title {
  margin-top: 10px;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
  font-size:23px;
}
.pwsp-title:hover {
  color: #007bff;
}
.pwsp-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.pwsp-popup-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  margin: 50px auto;
  position: relative;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
}
.pwsp-popup-image {
  text-align: center;
  margin-bottom: 15px;
}
.pwsp-popup-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pwsp-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  cursor: pointer;
}
