.share-row {
  display: flex;
  align-items: center;
  gap: 6px 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
  padding: 7px 10px;
  border: 1.5px solid var(--fc-black);
  border-radius: 10px;
  background: var(--fc-volt);
  color: var(--fc-black);
}

.share-row__label {
  font-family: var(--fc-font-mono, monospace);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.share-row__actions {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px;
}

.share-row__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--fc-black);
  border-radius: 7px;
  background: var(--fc-white, #fff);
  color: var(--fc-black);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.share-row__button[hidden] {
  display: none;
}

.share-row__button:hover,
.share-row__button:focus-visible {
  background: var(--fc-black);
  color: var(--fc-white, #fff);
  outline: none;
}

.share-row__button:focus-visible {
  box-shadow: 0 0 0 3px var(--fc-electric, #5000ff);
}

.share-row__button svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.share-row__button--copy.is-copied {
  background: var(--fc-electric, #5000ff);
  color: var(--fc-white, #fff);
}

.share-row__button--copy.is-error {
  background: var(--fc-bubblegum, #ff6fb1);
}

.share-row__status {
  min-height: 1em;
  font-size: 11px;
  font-weight: 800;
}

.share-row__status:empty {
  display: none;
}

.referral-progress {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid var(--fc-rule);
  border-radius: 10px;
  background: #fff;
}

.referral-progress__summary {
  margin: 0;
  color: var(--fc-black);
  font-family: var(--fc-font-mono, monospace);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.referral-progress__tiers {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px;
}

.referral-progress__claim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--fc-rule);
  border-radius: 7px;
  color: var(--fc-black);
  background: #f3f2ef;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.referral-progress__claim small {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.referral-progress__claim.is-claimable {
  border-color: var(--fc-black);
  background: var(--fc-volt);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--fc-volt) 45%, transparent);
}

.referral-progress__claim.is-claimed {
  opacity: .58;
}

.referral-progress__claim.is-pending {
  color: var(--fc-ink-mute);
}

.referral-progress__claim:hover,
.referral-progress__claim:focus-visible {
  border-color: var(--fc-black);
  color: var(--fc-white, #fff);
  background: var(--fc-black);
  outline: none;
}

@media (hover: none), (pointer: coarse) {
  .share-row__button {
    height: auto;
    min-height: 40px;
    padding: 8px 10px;
  }
}

@media (max-width: 640px) {
  .share-row {
    align-items: flex-start;
    padding: 7px 10px;
  }

  .share-row__actions {
    flex-basis: 100%;
  }

  .referral-progress__tiers {
    flex-basis: 100%;
  }
}
