.news-list-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto; 
  padding: 0 20px; 
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
}

.news-item {
  display: flex;
  align-items: center;
  padding: 24px 30px; 
  border-bottom: 1px solid #f0f0f0;
  gap: 24px; 
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 8px; 
  margin-bottom: 20px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); 
  transition: all 0.3s ease; 
  cursor: pointer; 
}

.news-item:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); 
  border-color: #e0e0e0;
}

.news-img-wrapper {
  flex: 0 0 220px; 
  height: 140px; 
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.news-item:hover .news-img-wrapper {
  transform: scale(1.03);
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-content {
  flex: 1;
  min-width: 280px; 
}

.news-title {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}


.news-item:hover .news-title {
  color: #2c79e4; 
}


.news-desc {
  font-size: 15px; 
  color: #555; 
  margin: 0 0 8px 0;
  line-height: 1.6; 
}

.news-date {
  font-size: 13px;
  color: #888;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .news-img-wrapper {
    flex: 0 0 100%;
    height: auto;
  }

  .news-title {
    font-size: 16px;
  }

  .news-desc {
    font-size: 14px;
  }
}

@media (min-width: 1201px) {
  .news-list-container {
    padding: 0; 
  }
}