.gsu-sections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.gsu-section-item {
  background: #7884dd; /* մուգ ֆոն */
  border-radius: 12px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s;
  cursor: pointer;
  transform: skew(-8deg); /* շեղանկյան էֆեկտ */
  overflow: hidden;
}

.gsu-section-inner {
  text-align: center;
  padding: 20px;
  transform: skew(8deg); /* հակադարձում ենք տեքստը, որ ուղիղ երևա */
}

.gsu-section-inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ecf0f1; /* բաց գույն տեքստ */
  margin: 0;
}

.gsu-section-item:hover {
  transform: skew(-8deg) translateY(-15px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  background: #0071dc; /* hover-ով կապույտ */
}

.gsu-section-item:hover h3 {
  color: #fff;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .gsu-sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gsu-sections-grid {
    grid-template-columns: 1fr;
  }
}
