.gastro-graph-images {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.gastro-graph-images__headline {
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gastro-graph-images__image-headline {
  color: #DB7C00;
  font-family: 'FuturaPTBold', Futura, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gastro-graph-images__image {
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.gastro-graph-images__image.gastro-graph-images__image-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .gastro-graph-images__image.gastro-graph-images__image-mobile {
    display: none;
  }

  .gastro-graph-images__image.gastro-graph-images__image-desktop {
    display: block;
  }
}

