/* Page7 Banner */
.page7-banner {
  background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&h=450&fit=crop');
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.8;
}

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

/* Adjust Article Card to Vertical Layout for Grid */
.list-content .article-card {
  flex-direction: column;
  margin-bottom: 0;
}

.list-content .article-card .card-thumb {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.list-content .article-card .card-body {
  padding: 16px 20px 20px;
}

/* List Toolbar Margin Fix */
.list-toolbar {
  margin-bottom: 28px;
}

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

@media (max-width: 768px) {
  .list-content {
    grid-template-columns: 1fr;
  }
  .list-content .article-card .card-thumb {
    height: 200px;
  }
}