.thread-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.thread-share [hidden] { display: none !important; }
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 1px solid #cddbc9;
  border-radius: 999px;
  padding: 9px 15px;
  background: #f4f8f0;
  color: #244c31;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.share-button:hover { background: #e5efdf; }
.share-button:focus-visible, .share-manual input:focus-visible {
  outline: 3px solid #2e5e3e;
  outline-offset: 3px;
}
.share-button:disabled { opacity: .6; cursor: wait; }
.share-whatsapp { background: #eaf7ed; border-color: #b9dbc1; }
.share-status { flex-basis: 100%; color: #425a43; font-size: .9rem; }
.share-status:empty { display: none; }
.share-manual { flex-basis: 100%; min-width: 0; font-size: .9rem; }
.share-manual input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid #cddbc9;
  border-radius: 8px;
  font: inherit;
}
@media (max-width: 420px) {
  .thread-share { gap: 8px; }
  .share-button { padding: 9px 12px; font-size: .9rem; }
}
