/* =========================================
   GL02 (t667) — идеальная сетка
   Desktop: 2 колонки
   Mobile: 1 колонка + одинаковые отступы
========================================= */

/* DESKTOP */
.t667__row{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 20px !important;
}

/* расстояние между строками */
.t667__row:not(:last-child){
  margin-bottom:20px !important;
}

/* сброс стандартных ширин */
.t667__tile,
.t667__tile_left,
.t667__tile_right{
  width:auto !important;
  max-width:none !important;
  float:none !important;
  margin:0 !important;
  padding:0 !important;
}

/* картинки */
.t667__row img{
  width:100% !important;
  display:block !important;
  height:auto !important;
}

/* ================================
   MOBILE
================================ */

@media (max-width:980px){

  .t667__row{
    grid-template-columns:1fr !important;
    gap:16px !important;  /* между 1 и 2 */
  }

  .t667__row:not(:last-child){
    margin-bottom:16px !important; /* между 2 и 3 */
  }

}