/* Page5 Banner */
.page5-banner {
  background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&h=450&fit=crop');
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--text-light);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--primary-color);
}
.breadcrumb span {
  margin: 0 6px;
  color: #ccc;
}
.breadcrumb .current {
  color: var(--primary-color);
  font-weight: 500;
}

/* Section Title with Underline */
.page5-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
}
.page5-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Section Description */
.page5-section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout for Article Cards */
.page5-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page5-content .article-card {
  flex-direction: column;
  margin-bottom: 0;
}
.page5-content .article-card .card-thumb {
  width: 100%;
  height: 200px;
}

/* List Toolbar Spacing */
.list-toolbar {
  margin-bottom: 32px;
}

/* Main Content Area */
.page5-main {
  padding-top: 0;
  padding-bottom: 60px;
}

/* Responsive */
@media (max-width: 1024px) {
  .page5-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page5-content {
    grid-template-columns: 1fr;
  }
  .page5-section-title {
    font-size: 24px;
  }
  .page5-section-desc {
    font-size: 14px;
  }
  .breadcrumb {
    margin-bottom: 24px;
  }
}