/* press-эффект кнопок */
.click_card, .tg_butt, .button_banners { transition: transform .16s ease; }
.click_card.is-pressing, .tg_butt.is-pressing, .button_banners.is-pressing { transform: scale(.96); }

/* модалка по центру + мягкое появление */
.card_blur{ position:fixed !important; inset:0 !important; z-index:10000 !important; }
.opened_card{
  position:fixed !important; top:50% !important; left:50% !important;
  transform:translate(-50%,-50%); z-index:10001 !important; transform-origin:50% 50%;
}
.pop-anim{ animation:rats_pop .18s ease both; }
@keyframes rats_pop{ from{transform:translate(-50%,-50%) scale(.96);opacity:0} to{transform:translate(-50%,-50%) scale(1);opacity:1} }

/* Команда — плотнее сетка и без лишней высоты подписи */
.whoweare .cards{ gap:24px !important; margin-top:24px !important; }
.whoweare .card{ margin:0 !important; }
.whoweare .text-container{ height:auto !important; max-width:260px !important; }
@media (max-width:600px){
  .whoweare .text-container{ max-width:160px !important; }
}
