/* Collection list page */
.collection-section {
  background: #f5f5f5;
  padding: 10px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 0;
}
.collection-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.collection-card a {
  display: block;
}
.collection-cover {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.collection-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-info {
  padding: 10px 12px;
}
.collection-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collection-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}
.collection-count {
  color: #ff6b00;
}
.collection-desc {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 8px;
}
.pagination a, .pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.pagination a:hover {
  background: #f5f5f5;
}
.pagination .current {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}
.pagination .disabled {
  color: #999;
  background: #f5f5f5;
}
