/* 精品影视 - ui-style-10 - Layout A */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin: 20px 0;
}

.video-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.video-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.video-card h3 a {
  color: #222;
}

.video-card h3 a:hover {
  color: #0066cc;
  text-decoration: none;
}

.video-card .meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.video-card .oneline {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.video-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.video-item h3 a {
  color: #222;
}

.video-item h3 a:hover {
  color: #0066cc;
}

.video-item .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.video-item .summary {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.video-list-full .video-item-full {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.video-item-full h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.video-item-full h3 a {
  color: #222;
}

.video-item-full h3 a:hover {
  color: #0066cc;
}

.video-item-full .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.video-item-full .summary {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ranking-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rank-number {
  flex: 0 0 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #0099ff);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.rank-content {
  flex: 1;
}

.rank-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.rank-content h3 a {
  color: #222;
}

.rank-content h3 a:hover {
  color: #0066cc;
}

.rank-content .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.rank-content .summary {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.rank-content .review {
  font-size: 14px;
  line-height: 1.6;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.latest-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.date-badge {
  flex: 0 0 80px;
  height: 50px;
  background: #f0f0f0;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.latest-content {
  flex: 1;
}

.latest-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.latest-content h3 a {
  color: #222;
}

.latest-content h3 a:hover {
  color: #0066cc;
}

.latest-content .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.latest-content .summary {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ranking-item, .latest-item {
    flex-direction: column;
    gap: 15px;
  }

  .rank-number, .date-badge {
    align-self: flex-start;
  }
}
