/* 影音專區卡片格網 */
.video-news-section {
  margin-top: 40px;
}
.video-news-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #e0e0e0;
  text-align: center;
}

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* 單張影片卡片 */
.video-card {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
}

/* 影片 iframe */
.video-card iframe {
  width: 100%;
  height: 160px;
  display: block;
}

/* 卡片標題 */
.video-title  {
  margin: 12px 8px;
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.3;
  text-align: center;
}
/* 卡片標題 */
.news-link {
  margin: 12px 8px;
  font-size: 0.8rem;
  color: #f0f0f0;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

/* 手機版調整 */
@media (max-width: 576px) {
  .video-card iframe {
    height: 180px;
  }
}
