.text-block .text__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.text-block .text__title {
  margin-bottom: auto;
}
.text-block .text__img {
  max-height: 600px;
  border-radius: 30px;
  overflow: hidden;
}
.text-block .text__left, .text-block .text__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: var(--background-secondary);
  overflow: hidden;
  border-radius: 20px;
}
.text-block .text__left {
  background: var(--bg-primary-second);
}
.text-block .text__left .text__content {
  overflow: visible;
  max-height: unset;
}
.text-block .text__left .text__content * {
  font-size: 20px;
}
.text-block .text__right {
  background-color: var(--bg-primary-main);
  background-image: url("./images/text_block_right_bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--bg-primary-stroke);
}
.text-block .text__btn {
  margin-top: auto;
}
.text-block .text__content {
  overflow: auto;
  max-height: 540px;
  padding-right: 20px;
}
.text-block .text__content.short {
  max-height: 450px;
}
.text-block .text__content::-webkit-scrollbar {
  width: 2px;
  border-radius: 5px;
}
.text-block .text__content::-webkit-scrollbar-track {
  background: var(--bg-primary-stroke);
  border-radius: 5px;
}
.text-block .text__content::-webkit-scrollbar-thumb {
  background-color: var(--colors-main);
  border-radius: 5px;
}

@media screen and (max-width: 1400px) {
  .text-block .text__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .text-block .text__left,
  .text-block .text__right {
    padding: 15px;
  }
  .text-block .text__left .text__content * {
    font-size: 16px;
  }
}/*# sourceMappingURL=block.css.map */