/* FK Video Center - 平铺网格样式（深蓝工厂风，与站点统一） */

/* 隐藏主题在 Video Center 页自动生成的顶部大图横幅 (page-hero) */
.fkvc-page .page-hero { display: none !important; }

.fkvc-wrap {
  background: #0e1822;
  color: #fff;
  padding: 14px 0 22px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.4;
}
.fkvc-wrap .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.fkvc-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.fkvc-card {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(14,24,34,0.05);
}
.fkvc-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0e1822;
  overflow: hidden;
}
.fkvc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.fkvc-title {
  padding: 8px 10px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #0e1822;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fkvc-empty {
  text-align: center;
  color: #d3dde8;
  padding: 30px 0;
  font-size: 14px;
}

@media (max-width: 640px) {
  .fkvc-grid { grid-template-columns: 1fr; }
}

/* 翻页导航 */
.fkvc-pagination {
  margin: 28px 0 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.fkvc-pagination .page-numbers {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  background: #fff;
  color: #0e1822;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.fkvc-pagination .page-numbers:hover {
  background: #f1f5f9;
  border-color: #9fb3c8;
}
.fkvc-pagination .page-numbers.current {
  background: #1f6feb;
  border-color: #1f6feb;
  color: #fff;
}
.fkvc-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: #9fb3c8;
  min-width: 0;
}
