.video-list-section,
.list-section {
  padding: 5.21vw 4.6875vw;
  background: #f4ede6;
}

.video-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6vw 4.16vw;
}

.video-list-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 1.30208vw;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(64, 79, 29, 0.12);
}

.video-list-image {
  position: relative;
  padding: 1.82vw;
}

.video-list-image img,
.video-list-placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 2 / 1;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  border-radius: 1.30208vw;
  background: #eef0ea;
  color: #8a9274;
  font-size: 2.2vw;
}

.video-list-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 4.1vw;
  height: 4.1vw;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.video-list-content {
  padding: 0 2.86vw 3.2vw;
}

.video-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1vw;
  color: #7a806d;
  font-size: 0.94vw;
}

.video-list-card h2 {
  margin: 0 auto 1.3vw;
  font-size: 1.56vw;
  line-height: 1.4;
  text-align: left;
}

.video-list-summary {
  margin: 0;
  font-size: 1.15vw;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-list-state {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.2vw;
}

.video-list-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.video-list-prev-btn,
.video-list-next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 1.56vw;
  color: #636f3d;
}

.video-list-prev-btn:disabled,
.video-list-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.video-list-page-info {
  color: #666;
  font-size: 1.56vw;
  font-weight: 500;
}

.video-list-current-page {
  font-weight: 700;
}

/* 详情页覆盖 - 配合 about-bg 浅色容器 */
.news-detail-section.about-bg .news-meta {
  display: flex !important;
}
.news-detail-section.about-bg .news-header {
  border-bottom-color: rgba(64, 79, 29, 0.1);
}
.news-detail-section.about-bg .video-player-container {
  background: #000;
  margin: 24px 0;
  border-radius: 8px;
}
.news-detail-section.about-bg .video-player-container video {
  max-height: 70vh;
}
.news-detail-section.about-bg .video-detail-section {
  border-top-color: rgba(64, 79, 29, 0.1);
}
.news-detail-section.about-bg .video-tags {
  display: flex;
}
.news-detail-section.about-bg .video-tag:hover {
  background: #e6dccd;
}

@media (max-width: 768px) {
  .video-list-section,
  .list-section {
    padding: 30px 20px;
  }

  .video-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-list-card {
    border-radius: 12px;
  }

  .video-list-image {
    padding: 14px;
  }

  .video-list-image img,
  .video-list-placeholder {
    border-radius: 12px;
    font-size: 28px;
  }

  .video-list-content {
    padding: 0 18px 24px;
  }

  .video-list-card h2 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .video-list-meta,
  .video-list-summary,
  .video-list-state,
  .video-list-page-info,
  .video-list-prev-btn,
  .video-list-next-btn {
    font-size: 14px;
  }
}
