.heading-with-link {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.heading-with-link__prose {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.heading-with-link__view-more {
  display: flex;
  gap: 8px;
  align-items: center;
}
.heading-with-link__view-more svg {
  width: 22px;
  height: 22px;
}
.heading-with-link__view-more > span {
  color: rgb(var(--color-text));
  border-bottom: 1px solid rgb(var(--color-text));
}
.heading-with-link--center {
  justify-content: center;
  text-align: center;
  flex-direction: column-reverse;
} 
.heading-with-link--right {
  flex-direction: row-reverse;
  text-align: end;
}
.heading-with-link--right .heading-with-link__view-more {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.heading-with-link--right .heading-with-link__view-more svg {
  transform: rotate(180deg);
}
.heading-with-link__content {
  color: rgba(var(--color-light-text));
}
@media (max-width: 959px) {
  .heading-with-link__view-more > span {
    display: none;
  }
  .heading-with-link--center .heading-with-link__view-more > span {
    display: block;
  }
}
.heading-with-link__view-more svg {
  flex-shrink: 0;
}
html[dir="rtl"] .heading-with-link__view-more svg {
  transform: rotate(180deg);
}
html[dir="rtl"] .heading-with-link--right .heading-with-link__view-more svg {
  transform: rotate(0);
}