.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
  margin: 20px 0 25px;
}

.collections-grid__item { text-align: center; }
.collections-grid__item_wide { grid-column: 1 / -1; }
.collections-grid img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;            /* гасим width/height из HTML */
  margin: 0 0 10px;
  aspect-ratio: 3 / 2;     /* единый формат карточек. Убрать — будут родные пропорции */
  object-fit: cover;       /* contain — если важно видеть картинку целиком, без обрезки */
  object-position: center;
  border-radius: 6px;
  background: #f5f5f5;
  transition: transform .25s ease, box-shadow .25s ease;
}
.collections-grid a:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.collections-grid__caption { line-height: 1.45; }

.collections-grid p { margin: 0; }
.collections-grid p:empty { display: none; }

.responsible-table_grid { overflow: visible; }

@media (max-width: 767px) {
  .collections-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
  .collections-grid img { aspect-ratio: 4 / 3; }
}
