/**
 * Story Card Styles
 * Reusable CSS for story cards across all pages
 */

/* Card hover effect */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Story tag badge */
.tag {
  display: inline-block;
  background-color: #e8dcc8;
  color: #6d5844;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Play button */
.play-btn {
  background-color: #8b7355;
  color: white;
  transition: all 0.3s ease;
}

.play-btn:hover:not(:disabled) {
  background-color: #6d5844;
  transform: scale(1.05);
}

/* Thumbnail placeholder */
.thumbnail-placeholder {
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c4b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #8b7355;
}
