/* ============================================================
 * IAlgarrobo - Botones Compartir
 * PC Ingenieria EIRL - GMM
 * ============================================================ */

.ialg-compartir {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 0 22px;
    clear: both;
}

.ialg-compartir-texto {
    font-size: 14px;
    line-height: 1;
    color: #757575;
    letter-spacing: .3px;
}

.ialg-compartir-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2b2b2b;
    text-decoration: none;
    box-shadow: none;
    transition: background .2s ease, transform .2s ease;
}

.ialg-compartir-boton svg {
    width: 19px;
    height: 19px;
    fill: #ffffff;
    display: block;
}

.ialg-compartir-boton:hover {
    transform: translateY(-2px);
}

.ialg-compartir-whatsapp:hover { background: #25D366; }
.ialg-compartir-facebook:hover { background: #1877F2; }
.ialg-compartir-twitter:hover  { background: #000000; }

/* Alineacion con el titulo y la fecha de la entrada (Divi) */
.single .et_post_meta_wrapper .ialg-compartir {
    margin-top: -10px;
}

/* Responsive */
@media (max-width: 767px) {
    .ialg-compartir {
        justify-content: center;
        margin: 10px 0 18px;
    }
}
