.embed-view {
  background-color: var(--full-bg);
  padding-block: 3rem;
}

.embed-view__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.embed-view__title {
  position: relative;
  color: var(--color-text);
  margin: 0;
  font-weight: 400;
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-bottom: -2rem;
}

.embed-view__title::after {
  content: '';
  background-color: var(--border-color);
  height: 1px;
  flex: 1;
}


.embed-view__link {
  display: flex;
}


@media screen and (min-width: 960px) {

  .embed-view__link {
    justify-content: flex-end;
  }

}