/* Shimmer base */
.skeleton {
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f8f8f8 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.2s infinite linear;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: -100px; }
  100% { background-position: 600px; }
}

/* Wrapper */
.guru-corner-skeleton {
  padding: 20px;
  text-align: center;
}

/* Section Title */
.section-title .skeleton-title {
  height: 22px;
  width: 200px;
  margin: 0 auto 24px auto;
}

/* Card Container */
.guru-video-skeletons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Card Placeholder */
.skeleton-card {
  width: 250px;
  height: 140px;
  border-radius: 10px;
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f5f5f5 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.2s infinite linear;
  border-radius: 6px;
}
