.strate-heading {
  margin-block-end: 40px;
}
.strate-heading_title {
  font-size: 3.625rem;
}
.strate-heading_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strate-heading_subtitle {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Roboto";
  color: var(--color-grey-1);
  margin: 0;
  line-height: 2.5rem;
}
.strate-heading_link {
  flex-shrink: 0;
}
.strate-heading_link--desktop {
  display: block;
}
.strate-heading_link--mobile {
  display: none;
}
.strate-heading_link-item {
  display: inline-flex;
  align-items: center;
  padding-right: 0.625rem;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.strate-heading_link-item:hover {
  color: var(--color-orange);
  text-decoration: none;
}
.strate-heading_link-item:hover .icon-ic_arrow_right {
  transform: translateX(4px);
}
.strate-heading_link-text {
  text-decoration: underline;
  transition: border-color 0.3s ease;
}
.title_link-item:hover .strate-heading_link-text {
  border-color: var(--color-orange);
}
.strate-heading .icon-ic_arrow_right {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.strate-heading .icon-ic_arrow_right svg {
  fill: var(--color-orange);
}
@media (max-width: 768px) {
  .strate-heading {
    display: block;
    margin-block-end: 20px;
  }
  .strate-heading_title {
    font-size: 2.375rem;
    line-height: 2.5625rem;
  }
  .strate-heading_top {
    justify-content: flex-start;
  }
  .strate-heading_heading {
    font-size: 2.375rem;
  }
  .strate-heading_subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .strate-heading_link--desktop {
    display: none;
  }
  .strate-heading_link--mobile {
    display: block;
    margin-top: 1.25rem;
  }
  .strate-heading_link-item {
    font-size: 0.9375rem;
  }
}