/* Base shimmer */
.skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, #e2e5e7 0px, #f8f8f8 40px, #e2e5e7 80px);
  background-size: 600px;
  animation: shine 1.2s linear infinite;
  border-radius: 4px;
}
@keyframes shine {
  0% { background-position: -100px; }
  100% { background-position: 600px; }
}

/* Common sizes */
.skeleton-section-title {
  height: 24px;
  width: 200px;
  margin: 24px 0 12px;
}
.skeleton-pill {
  height: 40px;
  width: 100px;
  margin: 6px;
  border-radius: 20px;
}

/* Mentor section */
.skeleton-mentor-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.skeleton-mentor-card {
  flex: 1;
  max-width: 160px;
  padding: 12px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.skeleton-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.skeleton-name {
  height: 16px;
  width: 80%;
  margin-bottom: 6px;
}
.skeleton-rating {
  height: 12px;
  width: 60%;
  margin-bottom: 6px;
}
.skeleton-subtext {
  height: 10px;
  width: 50%;
}

/* Guru Forum Banner */
.skeleton-guru-banner {
  position: relative;
  background: white;
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skeleton-guru-text {
  height: 18px;
  width: 60%;
  margin-bottom: 12px;
}
.skeleton-guru-btn {
  height: 36px;
  width: 140px;
  border-radius: 18px;
}
.skeleton-guru-image {
  width: 100px;
  height: 120px;
  border-radius: 8px;
}

/* Mock Test buttons row */
.skeleton-mocktest-buttons {
  display: flex;
  gap: 12px;
}
