.divider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border-primary);
  padding-bottom: 1rem;
}

.divider > .subheading {
  color: var(--color-text-primary);
}

.divider > .button {
  color: var(--color-text-tertiary);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
}

.divider > .button a {
  color: inherit;
  text-decoration: none;
}

.divider > .button a:hover {
  color: var(--color-text-brand);
  text-decoration: none;
}