/* ==========================================================================
 * StartLike Theme - Component: Share Buttons
 * ========================================================================== */

.c-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ----------------------------------------------------------------
 * Share Button Item
 * ---------------------------------------------------------------- */
.c-share-buttons__item {
  flex: 1;
  min-width: 0;
}

.c-share-buttons__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375em;
  padding: 0.625em 0.75em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: var(--sl-border-radius);
  transition: opacity var(--sl-transition-duration) var(--sl-transition-timing);
}

.c-share-buttons__item a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* ----------------------------------------------------------------
 * SNS Brand Colors
 * ---------------------------------------------------------------- */
.c-share-buttons__item--twitter a {
  background-color: #000;
}

.c-share-buttons__item--facebook a {
  background-color: #1877f2;
}

.c-share-buttons__item--line a {
  background-color: #00b900;
}

.c-share-buttons__item--hatena a {
  background-color: #00a4de;
}

.c-share-buttons__item--pocket a {
  background-color: #ef4056;
}

/* ----------------------------------------------------------------
 * Icon
 * ---------------------------------------------------------------- */
.c-share-buttons__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.c-share-buttons__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ----------------------------------------------------------------
 * Label (hidden on small screens)
 * ---------------------------------------------------------------- */
.c-share-buttons__label {
  display: none;
}

@media (min-width: 640px) {
  .c-share-buttons__label {
    display: inline;
  }
}
