.img-desaturate {
  filter: none;
  transition: filter 0.3s ease;
}

/* Только для десктопа (от 1200px) — ч/б + цвет при наведении */
@media (min-width: 1200px) {
  .img-desaturate {
    filter: grayscale(100%);
  }
  .img-desaturate:hover {
    filter: grayscale(0%);
  }
}

/* Main container */
.uc-news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Individual news items */
.uc-news__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.uc-news__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* Image container */
.uc-news__image-wrapper {
  height: 220px;
  overflow: hidden;
}

.uc-news__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uc-news__item:hover .uc-news__image {
  transform: scale(1.03);
}

/* Text content */
.uc-news__content {
  padding: 25px;
}

.uc-news__title {
  font-size: 22px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.uc-news__description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}

.uc-news__date {
  font-size: 14px;
  color: #888888;
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .uc-news__item {
    margin-bottom: 20px;
  }
  
  .uc-news__content {
    padding: 20px;
  }
  
  .uc-news__title {
    font-size: 20px;
  }
  
  .uc-news__description {
    font-size: 15px;
  }
}