.watch-section {
  padding: 40px 20px;
}

.watch-title {
  font-size: 32px;
  text-align: left;
  margin-bottom: 20px;
  text-decoration: underline;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.watch-card {
  border: none;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.watch-card:hover {
  transform: scale(1.02);
}

.video-cover {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.watch-text {
  padding: 12px 0 0;
}

.watch-text h3 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.watch-text p {
  font-size: 14px;
  color: #444;
}
