#noticias img {
    max-width: 280px;
}
#noticias {
    width: 100%;
    overflow-y:scroll;
}

#noticias::-webkit-scrollbar {
    width: 8px;     /* Tamaño del scroll en vertical */
    height: 8px;    /* Tamaño del scroll en horizontal */
    display: none;  /* Ocultar scroll */
}
#noticias::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
   /* Estilos barra (thumb) de scroll */
  #noticias::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
  
  #noticias::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }
  
  #noticias::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }
  
   /* Estilos track de scroll */
  #noticias::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
  }
  
  #noticias::-webkit-scrollbar-track:hover, 
  #noticias::-webkit-scrollbar-track:active {
    background: #d4d4d4;
  }
  