.landscape-media-text {
  position: relative;
  display: grid;
  flex-direction: column;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  .landscape-media-text {
    grid-template-columns: repeat(16, 1fr);
    column-gap: 1rem;
    align-items: start;
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .landscape-media-text {
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .landscape-media-text__img {
    grid-column: 2/span 14;
  }
  .standard .landscape-media-text__img {
    grid-row: 1;
    grid-column: 1/span 7;
  }
  .flip .landscape-media-text__img {
    grid-row: 1;
    grid-column: 10/span 7;
  }
}
.landscape-media-text__text {
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .landscape-media-text__text {
    grid-column: 1/span 7;
    padding: 2rem 0;
  }
  .left .landscape-media-text__text {
    grid-column: 1/span 7;
  }
  .centre .landscape-media-text__text {
    grid-column: 6/span 7;
  }
  .right .landscape-media-text__text {
    grid-column: 9/span 7;
  }
  .standard .landscape-media-text__text {
    grid-row: 1;
    grid-column: 9/span 7;
  }
  .flip .landscape-media-text__text {
    grid-row: 1;
    grid-column: 3/span 7;
  }
}
.serif .landscape-media-text__text {
  font-family: "plantin";
}
.landscape-media-text__text h3 {
  font-family: "plantin";
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  line-height: 1.875rem;
  --mb: 1.875rem;
  margin-bottom: var(--mb);
}
.landscape-media-text__text .button {
  margin-top: 1rem;
}
