/* Efek hover hanya untuk blok dengan gradasi hijau-emas */
div[style*="#8A9A54"][style*="#F2BF16"] {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Gradasi emerald glow kiri → kanan */
div[style*="#8A9A54"][style*="#F2BF16"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 168, 107, 0.4),
    rgba(166, 206, 57, 0.6)
  );
  transition: all 0.4s ease;
  z-index: 0;
}

/* Efek bergerak masuk saat hover */
div[style*="#8A9A54"][style*="#F2BF16"]:hover::before {
  left: 0;
}

/* Warna teks berubah jadi putih saat hover */
div[style*="#8A9A54"][style*="#F2BF16"]:hover span,
div[style*="#8A9A54"][style*="#F2BF16"]:hover a,
div[style*="#8A9A54"][style*="#F2BF16"]:hover em {
  color: #fff !important;
  position: relative;
  z-index: 1;
}
