#text-and-image-block .block__content {
  display: flex;
  gap: clamp(25px,1.5625vw + 20px, 50px);
}
#text-and-image-block .block__text {
  flex-grow: 1;
  color: var(--main-text);
}
#text-and-image-block .block__image {
  overflow: hidden;
  width: 640px;
  height: auto;
  flex-shrink: 0;
  border-radius: 5px;
}
#text-and-image-block .block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============ MEDIA ==================*/
@media (max-width: 1221px) {
  #text-and-image-block .block__content {
    flex-direction: column;
  }
  #text-and-image-block .block__image {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}

/*# sourceMappingURL=block.css.map */
