@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap&subset=cyrillic');



/* Стили для фильтров */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 10px 0 10px;
}

.filters button {
  background: rgba(0,0,0,0.05);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 0px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  letter-spacing: -0.5px; /* Опционально: регулировка межбуквенного интервала */
}

.filters button:hover,
.filters button.active {
  background: #000;
  color: #f5c71a;
  font-weight: 55000;
}

/* Анимация проектов */
.t-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.t-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none;
}

.t694__project.hidden { display: none !important; }
}

.t694__col {
  width: 33.33%!important;
  float: left!important;
}