/* Фон попапа новости */
.t-feed__post-popup,
.t-feed__post-popup__container {
  background-color: #000000 !important;
}

/* Текст внутри новости */
.t-redactor__text,
.t-redactor__text p,
.t-redactor__text li,
.t-redactor__text span,
.t-redactor__text a,
.t-feed__post-popup__text,
.t-text {
  color: #ffffff !important;
}

/* Заголовок */
.t-feed__post-popup__title,
.t-feed__post-popup__title a {
  color: #AD2429 !important;
}

/* Фон шапки с кнопкой назад */
.t-feed__post-popup__close-wrapper,
.t-feed__post-popup__close-wrapper * {
  background-color: #000000 !important;
  background: #000000 !important;
  color: #ffffff !important;
}

/* Ссылка-кнопка */
.t-popup__close {
  background: none !important;
}

/* SVG стрелка */
.t-popup__close-icon {
  fill: #ffffff !important;
}
.t-popup__close-icon path,
.t-popup__close-icon polyline,
.t-popup__close-icon line {
  stroke: #ffffff !important;
  fill: none !important;
}

/* Текст "Новости" рядом со стрелкой */
.t-feed__post-popup__close-text-wrapper,
.t-feed__post-popup__close-text-wrapper * {
  color: #ffffff !important;
}

/* Hover на карточки новостей */
.t-feed__post {
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.t-feed__post:hover {
  opacity: 0.7;
}
.t-feed__post-cover {
  overflow: hidden;
}
.t-feed__post-cover img {
  transition: transform 0.4s ease;
}
.t-feed__post:hover .t-feed__post-cover img {
  transform: scale(1.05);
}