.property-actions {
  display: grid;
  justify-items: end;
  gap: 1rem;
}

.property-share {
  display: grid;
  justify-items: end;
  gap: .55rem;
}

.property-share-label {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.property-share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

.share-action {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.share-action:hover,
.share-action:focus-visible {
  border-color: #9b7b3d;
  background: var(--cream);
  color: #84682f;
}

.share-action .ui-icon {
  width: 1.1rem;
  height: 1.1rem;
}

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

.share-feedback {
  min-height: 1em;
  color: #84682f;
  font-size: .72rem;
}

@media (max-width: 620px) {
  .property-actions,
  .property-share {
    width: 100%;
    justify-items: start;
  }

  .property-share-buttons {
    justify-content: flex-start;
  }
}
