/* ME602 (T395) — одинаковая ширина плиток с правой рамкой у каждой */
@media (max-width: 960px){
  .t395__wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr); /* 3 плитки в ряд */
    width: 100% !important;
    border-right: 1px solid #000000; /* рамка по периметру сетки */
    box-sizing: border-box;
  }
  .t395__wrapper_mobile { display: none !important; }

  .t395__tab {
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  /*   border-left: 1px solid #000000; /* ✅ у каждой плитки своя рамка */
    min-height: 64px;
    width: 100% !important;
  }

  .t395__title {
    text-align: center;
    padding: 10px 12px !important;
    line-height:1.2;
    width: 100%;
  }
}

@media (max-width: 460px){
  .t395__wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 плитки в ряд */
  }
}
