/* Универсальный код для блока ST315 */
[data-service="315"] .t-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

[data-service="315"] .t-item {
  min-width: 0;
}

/* Мобильная версия */
@media (max-width: 767px) {
  [data-service="315"] .t-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}