html, body {
  background: #000 !important;
  color: #fff !important;
  min-height: 100%;
}

iframe {
  border-radius: 16px !important;
  overflow: hidden;
}

.js-feed-popup-close .t-feed__post-popup__close-text-wrapper {
  color: #fff !important;
}

/* Общий контейнер карточки */
.t-feed__post {
  overflow: hidden;
}

/* Анимация картинки */
.t-feed__post-bgimg {
  transition: transform 0.3s ease-in-out !important;
}

/* Анимация текста */
.t-feed__post-title,
.t-feed__post-text {
  transition: color 0.3s ease-in-out !important;
}

/* Наведение на всю карточку (и текст, и картинку одновременно) */
.t-feed__post:hover .t-feed__post-bgimg {
  transform: scale(1.1) !important;
}

.t-feed__post:hover .t-feed__post-title,
.t-feed__post:hover .t-feed__post-text {
  color: #E7337D !important;
}