/* Social Share – responsive, minimal, accessible */
.lss-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0.5em 0 1.5em;
  padding: 0 0 1em;
  border-bottom: 1px solid #eee;

  /* keep in one row and allow swipe if needed */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lss-share::-webkit-scrollbar { display: none; }

.lss-btn { white-space: nowrap; }

.lss-share-label {
  margin-right: 6px;
  font-size: 15px;
  font-weight: 600;
}

.lss-btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  line-height: 1.1;
  transition: opacity .25s ease;
}

.lss-btn:hover { opacity: .88; color: #fff !important; }

.lss-email    { background:#848484; }
.lss-facebook { background:#1877F2; }
.lss-reddit   { background:#FF4500; }
.lss-x        { background:#000; }
.lss-copy     { background:#00b894; }

.lss-copy-status {
  margin-left: 6px;
  font-size: 12px;
  color: #0a7f4b;
}

/* Mobile – make everything more compact */
@media (max-width: 480px) {
  .lss-share {
    gap: 4px;                /* smaller gap */
    margin: .75em 0 1em;
    padding-bottom: .75em;
  }
  .lss-share-label {
    display: none;           /* hide "Share:" label on mobile */
  }
  .lss-btn {
    padding: 5px 8px;        /* tighter buttons */
    font-size: 12px;         /* smaller text */
    border-radius: 3px;
    font-weight: 600;
  }
}
