.text-and-image-block-content {
  display: flex;
  padding: var(--spacing-10) 0;
  gap: var(--spacing-5);
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}
.text-and-image-block-content h2 {
  font-size: var(--fs-dog);
}
@media screen and (min-width: 1024px) {
  .text-and-image-block-content {
    flex-direction: row;
    text-align: left;
    gap: var(--spacing-20);
    align-items: center;
    padding: var(--spacing-20) 0;
  }
  .text-and-image-block-content h2 {
    font-size: var(--fs-bear);
  }
}

@media screen and (min-width: 1024px) {
  .text-and-image-block.left .text-and-image-block-content {
    flex-direction: row-reverse;
  }
}

.text-and-image-column {
  flex: 1;
  min-width: 0;
}

.text-and-image {
  width: 100%;
  aspect-ratio: 1/1;
}

.text-and-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.text-and-image.right img {
  -webkit-mask-image: url("/wp-content/themes/bold/images/AMJ-Shape-1-white.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("/wp-content/themes/bold/images/AMJ-Shape-1-white.png");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

.text-and-image.left img {
  -webkit-mask-image: url("/wp-content/themes/bold/images/AMJ-Shape-1-white-left.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("/wp-content/themes/bold/images/AMJ-Shape-1-white-left.png");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
/*# sourceMappingURL=textAndImageBlock.1775557821961.css.map */