 /* Ocultar insignias de artículos */
span.badge.bg-danger.featured-article-badge {
    display: none;
}

/* Botones redes sociales */
 .social-buttons {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 15px 10px;
 }

 .social-button {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     margin: 0 10px;
     background-color: rgb(252, 221, 9);
     box-shadow: 0px 0px 4px #00000027;
     transition: 0.3s;
 }

 .social-button:hover {
     background-color: rgb(255, 245, 198);
     box-shadow: 0px 0px 6px 3px #00000027;
 }

 .social-buttons svg {
     transition: 0.3s;
     height: 30px;
     fill: rgb(47, 52, 30);
 }

 .facebook:hover svg {
     fill: rgb(59, 89, 152);
 }

 .youtube:hover svg {
     fill: rgb(255, 0, 0);
 }

 .twitter:hover svg {
     fill: rgb(0, 0, 0);
 }

 .instagram:hover svg {
     fill: rgb(131, 58, 180);
 }