.share-posts {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  flex-direction: row;
  justify-content: center;
}

.share-posts__eyebrow {
  flex: 0 0 auto;
  color: #012e8a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.share-posts__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.share-posts__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.share-posts__btn:hover,
.share-posts__btn:focus-visible {
  background: #f8fafc;
  border-color: #cbd5e1;
  outline: none;
}

.share-posts__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.share-posts__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.share-posts__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.share-posts__btn.is-whatsapp {
  color: #15803d;
}

.share-posts__btn.is-facebook {
  color: #1d4ed8;
}

.share-posts__btn.is-x {
  color: #111827;
}

.share-posts__btn.is-linkedin {
  color: #0a66c2;
}

.share-posts__btn.is-copy {
  color: #92400e;
  cursor: pointer;
}

.share-posts__feedback {
  margin: 0 0 0 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .share-posts {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-posts__feedback {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .share-posts {
    padding: 10px 12px;
  }

  .share-posts__grid {
    gap: 6px;
  }

  .share-posts__btn {
    min-height: 38px;
    min-width: 38px;
    padding: 0;
    justify-content: center;
  }

  .share-posts__label {
    display: none;
  }
}
