.cta {
  padding: var(--sp) 0;
  color: var(--bg);
}

.cta__inner {
  background: var(--yellow-gray-100);
  display: flex;
  gap: 50px;
  padding: 48px;
}

.cta__title {
  font: 500 var(--h1)/90% var(--heading-font-family);
  flex: 1 1 auto;
  text-transform: uppercase;
}

.cta__title > *[class^=_row-] {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.3em;
}

.cta__content {
  width: 400px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.cta__text {
  font-weight: 300;
  font-size: 26px;
  line-height: 130%;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__buttons .btn {
  flex: 1 1 50%;
  width: initial;
}

.cta__buttons .btn_simple {
  color: var(--bg);
}

@media (max-width: 1260px) {
  .cta__inner {
    flex-direction: column;
    gap: 0;
  }

  .cta__title {
    margin-bottom: 8px;
  }

  .cta__content {
    width: 100%;
    gap: 0px;
  }

  .cta__text {
    margin-bottom: 32px;
  }
}

@media (max-width: 760px) {
  .cta__inner {
    padding: 48px 20px;
  }

  .cta__title ._row-1 {
    text-align: left;
  }

  .cta__title ._row-2 {
    text-align: center;
  }

  .cta__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }
}