    .social-follow--compact{
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-follow--compact .footer-subtitle{
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      color: #6f2dbd; /* morado similar */
    }

    .social-follow--compact .social-handle{
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .social-follow--compact .info-sm{
      margin: 0;
    }

    .social-follow--compact .f_sm{
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .social-follow--compact .f_sm > li{
      margin: 0;
      padding: 0;
    }

    .social-follow--compact .f_sm > li > a{
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #4a4a4a; /* gris oscuro */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;

      transition: background-color .2s ease, transform .15s ease;
    }

    .social-follow--compact .f_sm > li > a img{
      width: 14px;
      height: 14px;
      display: block;

      /* si tus íconos son negros, esto los vuelve blancos */
      filter: brightness(0) invert(1);
      transition: filter .2s ease;
    }

    /* Hover amarillo como tu captura */
    .social-follow--compact .f_sm > li > a:hover{
      background: #f4d000;
      transform: translateY(-1px);
    }

    /* en hover: icono negro sobre amarillo */
    .social-follow--compact .f_sm > li > a:hover img{
      filter: none;
    }

    .social-follow--compact .f_sm > li > a:focus-visible{
      outline: 2px solid #6f2dbd;
      outline-offset: 2px;
    }

    /* por si "hidden" no existe globalmente */
    .social-follow--compact .hidden{
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }