.list-with-image {
  margin-top: 128px;
  padding-bottom: 48px;
  position: relative;
}
.list-with-image .wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 900px) {
  .list-with-image .wrapper {
    flex-wrap: wrap;
  }
}
.list-with-image-left {
  flex: 1 1 400px;
}
.list-with-image-left h2 {
  position: relative;
  z-index: 1;
}
.list-with-image-left-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: auto;
  max-width: 600px;
}
@media (max-width: 900px) {
  .list-with-image-left-image {
    display: none;
  }
}
.list-with-image-right {
  flex: 1 1 500px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.list-with-image-right > *:first-child {
  margin-top: 0;
}
.list-with-image-right-alert {
  background: var(--orange);
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 60px;
}
.list-with-image-right-image {
  display: none;
}
@media (max-width: 900px) {
  .list-with-image-right-image {
    display: block;
    margin-top: 2rem;
    margin-left: -1.5rem;
    margin-bottom: -3rem;
  }
}
