.TextGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spaceMd);
  margin-bottom: var(--spaceXl);
}

.TextGridItem {
  text-align: center;
}

.TextGridItem img {
  margin: 0 auto var(--spaceMd);
  display: block;
}

.TextGridItem big {
  display: block;
  font-size: var(--textXxl);
  font-weight: 700;
  line-height: 1;
}

.TextGridItem h2 {
  margin: 0 0 var(--spaceXs);
  font-size: var(--textMd);
}

.TextGridItem h2:after {
  display: none;
}

.TextIframe {
  min-height: 100%;
}

.TextImageCol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: calc(var(--spaceUnit) * 3.2 * var(--textVspaceMultiplier, 1)) 0 calc(var(--spaceUnit) * 2.4 * var(--textVspaceMultiplier, 1));
}

.TextImageCol-text {
  width: 55%;
  align-self: center;
}

@media (max-width: 48rem) {
  .TextImageCol-text {
    width: 100%;
    margin-bottom: var(--spaceMd);
  }
}

.TextImageCol-image {
  width: 40%;
  text-align: center;
}

@media (max-width: 48rem) {
  .TextImageCol-image {
    width: 100%;
  }
}

.TextImageCol:nth-of-type(even) .TextImageCol-image {
  order: -1;
}

@media (max-width: 48rem) {
  .TextImageCol:nth-of-type(even) .TextImageCol-image {
    order: 2;
  }
}

.TextImageCol-image img {
  width: 100%;
  border-radius: .5rem;
}

.TextTwoCol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--spaceLg);
}

.TextTwoCol-col {
  width: 47.5%;
}

@media (max-width: 62rem) {
  .TextTwoCol-col {
    width: 100%;
  }
  .TextTwoCol-col:first-child {
    margin-bottom: var(--spaceLg);
  }
}

.Download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 1rem;
  padding: 1rem;
  transition: .25s;
  border-bottom: 1px solid var(--colorOutlines);
}

@media (max-width: 48rem) {
  .Download {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: .5rem;
  }
}

.Download:hover, .Download:active, .Download:focus {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1.7 * 1%));
  color: var(--colorBrandDark);
}

.Download-title {
  font-weight: 600;
}

.Download p {
  margin-bottom: 0;
}

.Download .ButtonBase {
  color: #fff;
  text-decoration: none;
}

.Download .ButtonBase:hover, .Download .ButtonBase:active, .Download .ButtonBase:focus {
  text-decoration: none;
  color: #fff;
}

/*# sourceMappingURL=wysiwyg.min.css.map */
