#text-block .text__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#text-block .text__title {
  margin-bottom: 20px;
}
#text-block .text__img {
  max-height: 560px;
  border-radius: 10px;
  overflow: hidden;
}
#text-block .text__right {
  max-height: 560px;
  padding: 40px 50px;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
}
#text-block .text__content {
  overflow: auto;
  max-height: 415px;
  padding-right: 20px;
}
#text-block .text__content::-webkit-scrollbar {
  width: 2px;
  border-radius: 5px;
}
#text-block .text__content::-webkit-scrollbar-track {
  background: var(--stroke);
  border-radius: 5px;
}
#text-block .text__content::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

@media screen and (max-width: 1600px) {
  #text-block .text__content {
    max-height: 26vw;
  }
}
@media screen and (max-width: 1200px) {
  #text-block .text__right {
    padding: 30px;
  }
}
@media screen and (max-width: 992px) {
  #text-block .text__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #text-block .text__content {
    max-height: 400px;
  }
}
@media screen and (max-width: 400px) {
  #text-block .text__right {
    padding: 15px;
  }
}/*# sourceMappingURL=block.css.map */