.feature-heading-with-link {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.feature-heading-with-link__title {
  width: 100%;
  &.text-left {
    text-align: left;
  }
  &.text-center {
    text-align: center;
  }
  &.text-right {
    text-align: right;
  }
}

.feature-heading-with-link__view-more {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.feature-heading-with-link__view-more {
  font-weight: 400;
  &.title4 {
    font-size: 22px;
  }
  &.title5 {
    font-size: 18px;
  }
  &.title6 {
    font-size: 14px;
  }
}

.feature-heading-with-link__view-more > span {
  /* color: rgb(var(--color-text)); */
}

@media (max-width: 959px) {
  .feature-heading-with-link__view-more > span {
    display: none;
  }
}

.feature-heading-with-link__view-more svg {
  flex-shrink: 0;
}
