.imager:not(.imager--wrapped) .imager__wrapper {
  max-width: 1440px;
  padding: 0 var(--offset-x);
  margin: var(--offset-y) auto;
  box-sizing: border-box;
}

.imager--left:not(.imager--wrapped) .imager__wrapper,
.imager--centered:not(.imager--wrapped) .imager__wrapper,
.imager--right:not(.imager--wrapped) .imager__wrapper {
  display: flex;
  justify-content: space-between;
}

.imager--centered:not(.imager--wrapped) .imager__wrapper {
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.imager--left:not(.imager--wrapped) .imager__wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 1440px) {
  .imager--left:not(.imager--wrapped) .imager__wrapper,
  .imager--centered:not(.imager--wrapped) .imager__wrapper,
  .imager--right:not(.imager--wrapped) .imager__wrapper {
    gap: 0 175px;
  }
}

@media (min-width: 1025px) {
  .imager--left:not(.imager--wrapped) .imager__wrapper,
  .imager--centered:not(.imager--wrapped) .imager__wrapper,
  .imager--right:not(.imager--wrapped) .imager__wrapper {
    gap: 0 100px;
  }
}

@media (max-width: 1024px) {
  .imager--left:not(.imager--wrapped) .imager__wrapper,
  .imager--centered:not(.imager--wrapped) .imager__wrapper,
  .imager--right:not(.imager--wrapped) .imager__wrapper {
    flex-direction: column-reverse;
    gap: 25px 0;
  }
}

.imager--left:not(.imager--wrapped) .imager__wrapper, 
.imager--right:not(.imager--wrapped) .imager__wrapper {
  margin: var(--offset-y) auto;
}

.imager--left:not(.imager--wrapped) .imager__content,
.imager--centered:not(.imager--wrapped) .imager__content,
.imager--right:not(.imager--wrapped) .imager__content {
  width: 100%;
  max-width: 425px;
}

.imager__headline,
.imager__subline,
.imager__body {
  margin-bottom: 15px;
}

.imager__headline {
  font: var(--venti);
}

.imager__subline {
  font-size: 22px;
  font-weight: 700;
}

.imager__body {
  font-size: 22px;
  line-height: initial;
}

/* Because of all.css */

.imager__body strong {
  font-weight: revert;
}

.imager__body em {
  font-style: italic;
}

.imager__body ul,
.imager__body ol {
  list-style-type: revert;
  padding: revert;
  margin: revert;
}

.imager__media {
  margin-top: 25px;
}

.imager--left:not(.imager--wrapped) .imager__media,
.imager--right:not(.imager--wrapped) .imager__media {
  max-width: 660px;
  margin-top: 0;
}

.imager--centered:not(.imager--wrapped) .imager__media {
  margin-top: 25px;
}

.imager__caption {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.imager--left:not(.imager--wrapped) .imager__caption,
.imager--centered:not(.imager--wrapped) .imager__caption,
.imager--right:not(.imager--wrapped) .imager__caption {
  text-align: center;
}