.video-card-skeleton {
  position: relative;
  width: 100%;
  font-family: 'Google Sans';
}
.video-card-skeleton__wrapper {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.video-card-skeleton__thumbnail {
  position: relative;
  width: 100%;
  height: 16.9375rem;
}
.video-card-skeleton__thumbnail-image {
  width: 100%;
  height: 100%;
}
.video-card-skeleton__button-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
}
.video-card-skeleton__content {
  padding: 1rem 1.5rem;
}
.video-card-skeleton__information {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.video-card-skeleton__category {
  width: 5.5rem;
  height: 0.75rem;
  border-radius: 0.25rem;
}
.video-card-skeleton__divider {
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  margin-inline: 0.5rem;
}
.video-card-skeleton__author {
  width: 8.5rem;
  height: 0.75rem;
  border-radius: 0.25rem;
}
.video-card-skeleton__title {
  width: 100%;
  height: 1.125rem;
  border-radius: 0.25rem;
  margin-bottom: 0.375rem;
}
.video-card-skeleton__title--short {
  width: 70%;
  margin-bottom: 0.5rem;
}
.video-card-skeleton__description {
  width: 100%;
  height: 0.8125rem;
  border-radius: 0.25rem;
  margin-bottom: 0.375rem;
}
.video-card-skeleton__description--short {
  width: 82%;
  margin-bottom: 1.5rem;
}
.video-card-skeleton__view-now {
  width: 7rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media screen and (max-width: 639.98px) {
  .video-card-skeleton__thumbnail {
    height: 12rem;
  }
  .video-card-skeleton__button-play {
    width: 2.5rem;
    height: 2.5rem;
  }
  .video-card-skeleton__content {
    padding: 1rem 0.75rem;
  }
  .video-card-skeleton__category,
  .video-card-skeleton__author {
    height: 0.625rem;
  }
  .video-card-skeleton__title {
    height: 1rem;
  }
  .video-card-skeleton__description {
    height: 0.75rem;
  }
  .video-card-skeleton__view-now {
    height: 0.875rem;
    width: 6rem;
  }
}
