/* Ограничим выход фото */
.t-feed__item {
  overflow: hidden;
  position: relative;
}

/* Плавное увеличение изображения */
.t-feed__imgwrapper img {
  transition: transform 0.4s ease-in-out;
}

/* При наведении на карточку — увеличивается изображение */
.t-feed__item:hover .t-feed__imgwrapper img {
  transform: scale(1.1);
}

.fullText {
    display: none;
}


.pulse {
  animation: pulseAnimation 1.8s infinite;
  display: inline-block;
  transition: transform 0.3s;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 167, 51, 0.6); /* тёплый оранжевый */
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 167, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 167, 51, 0);
  }
}

.js-feed-post-descr,
.js-feed-post-date{
    display: none;
}



.t1004{
    background: url('https://static.tildacdn.com/tild3138-3230-4939-b866-353539363233/Frame_1.png') center / cover;
    padding: 40px 0;
}

.t-feed__post-img {
    width: 100%;
    object-fit: cover;
    background-position: center / top;
}