/* ДЕСКТОП: сдвиг каталога без уезда вправо */
@media (min-width: 981px) {
  .t-store__grid-cont_col-width_stretch {
    font-size: 0;
    box-sizing: border-box;
    width: calc(100% - 18%);   /* 14% слева + 4% справа */
    margin-left: 14%;
    margin-right: 4%;
  }
  .t-store__stretch-col_33 {
    width: calc((100% - 8%) / 3); /* 3 карточки + 2 промежутка по 4% */
    margin-left: 0;
    margin-right: 4%;
  }
  .t-store__stretch-col_33:nth-child(3n) {
    margin-right: 0;
  }
}
/* МОБИЛЬНЫЙ СБРОС */
@media (max-width: 980px) {
  .t-container_100,
  .t-store__grid-cont_col-width_stretch {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }
  .t-store__stretch-col_33 {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
/* YAKOR: единый стиль бейджа "Наше ⚓" (и любых бейджей на карточках) */
:root{
  --yakor-blue: #354154; /* фирменный синий как на главной */
}

/* Универсально для разных store-блоков Tilda */
.t-store__card__mark,
.t776__mark, .t778__mark, .t786__mark{
  background: #fff !important;
  color: var(--yakor-blue) !important;
  border: 1px solid rgba(53,65,84,.25) !important;
}

/* если внутри бейджа есть вложенные элементы */
.t-store__card__mark *{
  color: inherit !important;
}

/* чуть аккуратнее на мобилке */
@media screen and (max-width: 960px){
  .t-store__card__mark,
  .t776__mark, .t778__mark, .t786__mark{
    border-width: 1px !important;
  }
}