
.wsgs-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}
.wsgs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.wsgs-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.wsgs-item:hover {
  transform: translateY(-4px);
}
.wsgs-item img {
  width: 100%;
  display: block;
}
.wsgs-item h4 {
  font-size: 1em;
  font-weight: 600;
  padding: 12px;
  margin: 0;
  color: #000;
}
.wsgs-loadmore {
  margin: 40px auto 0;
  display: block;
  padding: 14px 32px;
  background: #e6007e;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.wsgs-loadmore:hover {
  background: #c5006f;
  transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .wsgs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .wsgs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wsgs-grid {
    grid-template-columns: 1fr;
  }
}
