/* CONTENEDOR DE CADA ITEM DE CONTACTO */
.footer-contacto{
    display:flex !important;
    align-items:flex-start !important;
    flex-wrap:nowrap !important;
    gap:12px !important;
}

/* BLOQUE DE LA IMAGEN / ICONO */
.footer-contacto .wp-block-image{
    flex:0 0 30px !important;
    width:30px !important;
    min-width:30px !important;
    max-width:30px !important;
    margin:0 !important;
}

/* IMAGEN */
.footer-contacto .wp-block-image img{
    width:30px !important;
    height:30px !important;
    object-fit:contain !important;
    display:block !important;
}

/* CONTENEDOR DEL TEXTO */
.footer-contacto > .wp-block-group:last-child,
.footer-contacto > .wp-block-column:last-child{
    flex:1 1 auto !important;
    min-width:0 !important;
}

/* PÁRRAFOS */
.footer-contacto p{
    margin:0 !important;
}

/* LINKS */
.footer-contacto a{
    color:inherit !important;
    text-decoration:none !important;
    transition:color .2s ease;
}

/* HOVER LINKS */
.footer-contacto a:hover{
    color:#00C0F3 !important;
    text-decoration:underline !important;
}