.card-shadow {
box-shadow: 
0 15px 35px rgba(0,0,0,0.6),
0 0 25px rgba(255,0,0,0.25);
border-radius: 20px;
overflow: hidden;
}
/* Блок доверия: дорогие карточки */
.trust .tn-atom, 
.trust .t-card, 
.trust .t-img {
  border-radius: 24px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow:
    0 18px 45px rgba(0,0,0,.55),
    0 0 28px rgba(219,16,17,.22);
}

/* Эффект "вау" при наведении */
.trust .tn-atom:hover,
.trust .t-card:hover,
.trust .t-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 28px 70px rgba(0,0,0,.65),
    0 0 42px rgba(219,16,17,.35);
  filter: saturate(1.06) contrast(1.06);
}

/* Чтобы тень не обрезалась контейнерами */
.trust, .trust * {
  overflow: visible !important;
}