.post-body{
 padding-block-end: clamp(2.5rem, 1.346rem + 3.85vw, 3.75rem);
}

.share-box-footer {
position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  justify-content: center;
  gap: 10px;
  padding: 1em 0;
}
.share-box-footer li {
  display: grid;
  align-items: center;
  line-height: 1;
  min-width: 150px;
  position: relative;
}
.share-box-footer li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
}
.share-box-footer li a i{
  margin-right: 5px;
  font-size: 16px;
}

.x a{
  background: #000;
}
.x a:hover {
  background: #424242;
}

.icon-x{
 width: 14px;
 height: 14px;
 display: block;
 background-image: url(../img/icon-x-wt.png);
 background-size: cover;
}
.copy-url{
 background-color: #fff;
 border: 1px solid #533635;
 display: grid;
 align-items: center;
 padding: 0 15px;
 border-radius: 3px;
 height: 100%;
}
.copy-url:hover{
 background-color: #e9d5d4;
}

#toast {
    position: absolute;
    top: 50%;
    left: 105%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
    z-index: 1000;
}

#toast.show{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}