.list-item {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}

.list-item-image-container {
  flex: 1;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.list-item-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.list-item-image:hover {
  transform: scale(1.1);
}

.list-item-content {
  flex: 2;
  padding-left: 1.5rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
  }

  .list-item-content {
    padding-left: 0;
    padding-top: 1.5rem;
  }
}
