/*
 Theme Name:   XCODE Nicaragua
 Theme URI:    https://github.com/duvs/
 Description:  Este es un tema hijo creado por Duvan Mendoza
 Author:       Duvan Mendoza
 Author URI:   www.linkedin.com/in/duvan-mendoza/
 Template:     generatepress
 Version:      0.1
*/

.skeleton-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: pulse 1.5s infinite ease-in-out;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0%,
  100% {
    background-position: 200% 0;
  }
  50% {
    background-position: 0 0;
  }
}
