/* assets/css/category.css */

.cat-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Optional: slightly tighten cards on this page without changing global card CSS */
.grid{
  align-items: stretch;
}

/* If your global .card__thumb already sets aspect ratio, keep it.
   Otherwise, this makes thumbs consistent. */
.card__thumb{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Pager spacing */
.pager{
  margin: 16px 0 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pager a{
  text-decoration: none;
}
