.about__columns{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.about__column_title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.about__gost-title{
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  margin-bottom: 10px;
}
.about__gost-subtitle{
    color: var(--accent-bg);
    font-size: 16px;
    font-family: var(--semibold);
}
@media (min-width:768px) {
    .about__columns{
        grid-template-columns: 1fr 1fr;
    }
    .about__column_title{
        min-height: 100%;
    }
}
@media (min-width:1350px) {
    .about__columns{
        gap: 100px;
    }
}