/* Shimmer animation */
.skeleton {
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f5f5f5 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.3s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Container */
.learning-header-skeleton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #cacaca; /* dark navy */
  padding: 24px;
  border-radius: 10px;
  color: white;
}

/* Left Section */
.learning-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Right Section */
.learning-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Skeleton blocks on left */
.skeleton-title-line {
  width: 220px;
  height: 24px;
}

.skeleton-brand-name {
  width: 120px;
  height: 28px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 10px;
}

.skeleton-store-btn {
  width: 120px;
  height: 40px;
  border-radius: 8px;
}

/* Messaging Icons */
.messaging-icons {
  display: flex;
  gap: 10px;
}

.skeleton-circle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
