/* MH 0.3 simulation — deux rangées de quatre articles sous la Une.
   Les variations de territoire restent portées par la Une ; le flux inférieur
   conserve une lecture commune en 2 × 2 pour comparer les six rubriques. */

.category-feed--two-rows .category-list,
.category-page.territory--serial .category-feed--two-rows .category-list,
.category-page.territory--urchin .category-feed--two-rows .category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: .2rem;
  max-width: none;
}

.category-feed--two-rows .category-item,
.category-page.territory--urchin .category-feed--two-rows .category-item {
  display: grid;
  grid-template-columns: minmax(7.25rem, .86fr) minmax(0, 1.14fr);
  gap: 1.1rem;
  align-items: center;
  min-height: 8.6rem;
  padding-block: .8rem;
  border-bottom: 1px solid var(--line);
}

.category-page.territory--urchin .category-feed--two-rows .category-item__image,
.category-page.territory--urchin .category-feed--two-rows .category-item__body {
  grid-column: auto;
  grid-row: auto;
}
