.text-img-repeater-list {
  grid-column: 3 / span 10;
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.text-img-repeater-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.text-img-repeater-item-text-wrapper {
  grid-row: 1 / span 1;
  border-style: double;
  border-width: 4px;
  border-color: var(--yellow);
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  container: card-grid / inline-size;
}

.text-img-repeater-item-img-wrapper {
  grid-row: 1 / span 1;
  position: absolute;
  width: 100%;
  height: 100%;
}

.text-img-repeater-item:nth-child(odd) .text-img-repeater-item-text-wrapper {
  grid-column: 2 / span 1;
}

.text-img-repeater-item:nth-child(odd) .text-img-repeater-item-img-wrapper {
  grid-column: 1 / span 1;
}

.text-img-repeater-item:nth-child(even) .text-img-repeater-item-text-wrapper {
  grid-column: 1 / span 1;
}

.text-img-repeater-item:nth-child(even) .text-img-repeater-item-img-wrapper {
  grid-column: 2 / span 1;
}

.text-img-repeater-list.img-side-right
  .text-img-repeater-item:nth-child(odd)
  .text-img-repeater-item-text-wrapper {
  grid-column: 1 / span 1;
}

.text-img-repeater-list.img-side-right
  .text-img-repeater-item:nth-child(odd)
  .text-img-repeater-item-img-wrapper {
  grid-column: 2 / span 1;
}

.text-img-repeater-list.img-side-right
  .text-img-repeater-item:nth-child(even)
  .text-img-repeater-item-text-wrapper {
  grid-column: 2 / span 1;
}

.text-img-repeater-list.img-side-right
  .text-img-repeater-item:nth-child(even)
  .text-img-repeater-item-img-wrapper {
  grid-column: 1 / span 1;
}

.text-img-repeater-item-headline {
  text-align: center;
  margin: 0;
}

.text-img-repeater-item-separator {
  width: min(100%, 30ch);
  height: 2px;
  background-color: currentColor;
  align-self: center;
  margin-block: 1em;
}

.text-img-repeater-item-img-title {
  position: absolute;
  color: var(--white);
  bottom: 1em;
  left: 1em;
  font-size: max(0.875rem, 0.78125vw);
}

.text-img-repeater-item:nth-child(even) .text-img-repeater-item-img-title,
.text-img-repeater-list.img-side-right
  .text-img-repeater-item:nth-child(odd)
  .text-img-repeater-item-img-title {
  right: 1em;
  left: unset;
  text-align: right;
}

.text-img-repeater-item-description {
    min-height: calc(50cqmax - (2px + 2em + max(1.25rem, 1.40625vw) * 1.25));
}

@media (max-width: 1199.98px) {
  .text-img-repeater-list {
    grid-column: 2 / span 12;
  }
}

@media (max-width: 991.98px) {
  .text-img-repeater-item {
    grid-template-columns: 1fr;
  }

  .text-img-repeater-item:nth-child(even) .text-img-repeater-item-img-wrapper,
  .text-img-repeater-item:nth-child(even) .text-img-repeater-item-text-wrapper,
  .text-img-repeater-item:nth-child(odd) .text-img-repeater-item-text-wrapper,
  .text-img-repeater-item:nth-child(odd) .text-img-repeater-item-img-wrapper {
    grid-column: unset;
  }

  .text-img-repeater-item-text-wrapper {
    grid-row: unset;
  }

  .text-img-repeater-item-img-wrapper {
    position: relative;
    height: auto;
  }
}
