/**
 * Share buttons
 */

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  .list-style-item {
    margin-right: 0;
  }

  .share-label {
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    margin-right: calc(var(--spacing) * .75);
  }

  a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--bs-border-radius-2xl);
    background: var(--bs-white-rgb);
    color: var(--white);
    text-decoration: none;
    border: 2px solid transparent;

    &:hover,
    &:focus {
      background: rgba(255, 255, 255, 0.12);
      border: 2px solid var(--white);
    }
  }

  /* Icons */
  .icon {
    svg {
      fill: var(--white);
      width: 16px;
    }
  }

  .share-facebook {
    svg {
      width: 10px;
    }
  }
}

.share-os a {
  cursor: pointer;
}
