/**
* Block Name: text_bild
*/

section.text_bild img {
  border-radius: var(--border-radius);
}

section.text_bild .links_container {
  gap: 25px;
}

.row.bild-text-layout .text_column {
  order: 2;
}

.row.bild-text-layout .image_column {
  order: 1;
}

@media (min-width: 992px) {
  section.text_bild .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 25px;
  }
}

@media (max-width: 992px) {
  section.text_bild .row {
    --bs-gutter-y: 30px;
  }

  .row .text_column {
    order: 2;
  }

  .row .image_column {
    order: 1;
  }
}
