:host {
  display: flex;
  flex-flow: column;
  min-height: 88px;
}

.sdg-sequential-links {
  &-arrow {
    flex-shrink: 0;
    color: var(--sdg-color-text);
    font-variation-settings: 'wght' 350;
  }

  &-link {
    display: flex;
    padding: 16px 16px 16px 8px;
    column-gap: 8px;
    border-right: none;
    border-left: none;
    background-color: transparent;
    cursor: pointer;

    &:hover {
      background-color: var(--sdg-color-grey-pale);

      .sdg-sequential-links-text {
        text-decoration: underline;
      }
    }

    &:focus {
      outline: solid 2px var(--sdg-color-blue-light);
      outline-offset: 0;
    }

    &:first-of-type {
      border-top: 1px solid var(--sdg-color-grey-light);
      border-bottom: none;
    }

    &:last-of-type {
      border-top: 1px solid var(--sdg-color-grey-light);
      border-bottom: 1px solid var(--sdg-color-grey-light);
    }
  }

  &-content {
    display: flex;
    flex-flow: column;
    row-gap: 8px;
  }

  &-title,
  &-text {
    font-size: 16px;
    text-align: left;
  }

  &-title {
    font-weight: bold;
    color: var(--sdg-color-text);
  }

  &-text {
    color: var(--sdg-color-blue-piv);
  }
}
