.block {
    position: relative;
    height: 300px;
    align-items: center;
  display: flex;
  max-width: 900px; 
  margin: 0 auto;
  margin-bottom: 60px;
}

.list {
  flex: 1; 
  list-style: none;
}

.list h2 {
    margin-bottom: 30px;
}

.list li {
    margin-bottom: 20px;
}

.image-wrapper {
  max-width: 40%;
  height: 100%;
  margin-left: 5%;
  
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to left, black 10%, transparent 90%);
  -webkit-mask-image: linear-gradient(to left, black 10%, transparent 90%);
}

@media (max-width: 768px) {
  .list li {
    margin-bottom: 10px;
  }

  .block {
    flex-direction: column;
    height: auto;
  }
  
  .image-wrapper {
    width: 100%;
    height: 300px;
    max-width: none;
    margin-left: 0px;
    margin-top: 20px;
  }

  .image-wrapper img {
      mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
  }
}