/**
 * Watch Video Card Styles
 * For embedding watch video cards in blog posts and other content
 */

.watch-video-card {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
}

.watch-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.watch-video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.watch-card-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}

.watch-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.watch-video-card:hover .watch-card-thumbnail img {
  transform: scale(1.05);
}

.watch-card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.watch-video-card:hover .watch-card-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.watch-card-content {
  padding: 20px;
  background: #fff;
}

.watch-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}

.watch-card-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Inline watch cards (when embedded in content) */
.wp-block-shortcode .watch-video-card {
  display: inline-block;
  vertical-align: top;
}

/* Responsive */
@media (max-width: 768px) {
  .watch-video-card {
    max-width: 100%;
  }
  
  .watch-card-title {
    font-size: 16px;
  }
  
  .watch-card-excerpt {
    font-size: 13px;
  }
}
