.share-bar-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0 40px;
  font-family: inherit;
}
.share-text {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  font-family: inherit;
}
.share-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #000;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}
.fb { background: #1877F2; }
.ms { background: #0084FF; }
.rd { background: #FF4500; }
.tw { background: #000000; }
.cl { background: #444444; }
@media (max-width: 600px) {
  .share-buttons { gap: 8px; }
  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
