/* Banner */
.page14-banner {
  background-size: cover;
  background-position: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0 10px;
  font-size: 14px;
  color: #999;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary-color);
}
.breadcrumb .sep {
  margin: 0 8px;
  color: #ccc;
}

/* Page Main */
.page-main {
  padding-bottom: 60px;
  min-height: 60vh;
}

/* List Layout */
.list-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Override article-card for grid layout */
.list-content .article-card {
  flex-direction: column;
  margin-bottom: 0;
}
.list-content .article-card .card-thumb {
  width: 100%;
  height: 200px;
}

/* List Toolbar */
.list-toolbar {
  margin-bottom: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Pagination spacing */
.list-pagination {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .list-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .list-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .list-content .article-card .card-thumb {
    width: 100%;
    height: 180px;
  }
  .page14-banner {
    height: 280px;
  }
  .page14-banner .banner-title {
    font-size: 26px;
  }
  .page14-banner .banner-subtitle {
    font-size: 15px;
  }
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.list-content .article-card {
  animation: fadeInUp 0.5s ease both;
}
.list-content .article-card:nth-child(1) { animation-delay: 0.05s; }
.list-content .article-card:nth-child(2) { animation-delay: 0.1s; }
.list-content .article-card:nth-child(3) { animation-delay: 0.15s; }
.list-content .article-card:nth-child(4) { animation-delay: 0.2s; }
.list-content .article-card:nth-child(5) { animation-delay: 0.25s; }
.list-content .article-card:nth-child(6) { animation-delay: 0.3s; }