
.post-share {
    /* width: 100%; */
    min-height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0.5rem;
}

@media screen and (max-width: 1024px) {
    .post-share{
        justify-content: center;
    }
}

.post-share .bi {
    font-size: 30px;
    color: var(--wp--preset--color--dapo-white);
}

.post-share__buttons {
    display: flex;
    justify-content: flex-end;
    z-index: 0;
    /* width: 100%; */
    transition: transform 0.3s ease-in;
    
}

.post-share__buttons  a {
     display: flex;
     align-items: center;
     column-gap: 0.5rem;
     text-decoration: none;
     border: none;
     border-radius: 0.2rem;
     height: 30px;
     min-width: fit-content;
     /* padding: 0 0.5rem; */
     /* align-self: center; */
     
 }


.twitter svg {
    fill: #1da1f2;
}

.facebook svg {
    fill: #1877f2;
}

.whatsapp svg {
    fill: #075e54;
}

.linkedin svg {
    fill: #0a66c2;
}

.twitter svg,
.facebook svg,
.whatsapp svg,
.linkedin svg{
    transition: opacity 0.35s ease-in-out;
}

.twitter svg:hover,
.facebook svg:hover,
.whatsapp svg:hover,
.linkedin svg:hover{
    opacity: 0.5;
}