.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  padding: 16px 0 4px;
}
.breadcrumb a {
  color: #888;
}
.breadcrumb a:hover {
  color: #e10600;
}
.breadcrumb span.sep {
  margin: 0 6px;
}
.breadcrumb span.current {
  color: #222;
  font-weight: 600;
}
.listing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 16px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}
.listing-head h1 {
  font-size: 1.5rem;
  margin: 0;
}
.listing-head .count {
  font-size: 0.85rem;
  color: #888;
}
.taza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.taza-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.taza-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.taza-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.taza-card .body {
  padding: 12px 14px;
}
.taza-card h3 {
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0 0 8px;
  font-weight: 600;
}
.taza-card h3 a {
  color: #181818;
}
.taza-card h3 a:hover {
  color: #e10600;
}
.taza-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}
.taza-meta .tag {
  background: #f5f5f5;
  color: #e10600;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 5px;
}
.taza-meta .time {
  color: #999;
}
.no-articles {
  padding: 60px 0;
  text-align: center;
  color: #888;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 34px 0 46px;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}
.pagination a:hover {
  border-color: #e10600;
  color: #e10600;
}
.pagination a.active {
  background: #e10600;
  border-color: #e10600;
  color: #fff;
}
@media (max-width: 900px) {
  .taza-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .taza-grid {
    grid-template-columns: 1fr;
  }
}
