#noticias2Contenido {
  overflow: auto;
  position: relative;
}


#noticias2Contenido::-webkit-scrollbar {
  width: 0px;
  background-color: transparent;
  /* Hacer el scrollbar transparente por defecto */
}

#noticias2Contenido::-webkit-scrollbar-thumb {
  background: transparent;
  /* Hacer el thumb del scrollbar transparente por defecto */
}

/* Mostrar el scrollbar cuando el cursor está sobre el div */
#noticias2Contenido:hover::-webkit-scrollbar-thumb {
  background: #babac0;
  /* Cambiar el color del thumb del scrollbar al pasar el mouse sobre él */
  width: 0px;
  border-radius: 16px;
  /*border: 4px solid #fff;*/
}

#Noticias2_Container {
  width: 100%;
  height: auto;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: pre-line;
}

#noticias2 {
  width: 100%;
  display: flex;
  height: auto;
  justify-content: space-around;
  text-align: center;
  flex-direction: row;
  align-items: self-start;
  padding: 10px;
  margin-top: 20px;
  gap: 20px;
}

.Noticias2Inf {
  width: 30%;
  height: auto;
  text-align: left;
}

.Noticias2Date {
  background-color: #323232;
  padding: 5px;
  color: white;
  max-width: 50%;
  border-radius: 10px;
  text-align: center;
  font-family: Montserrat-MediumItalic;
}

#noticias2Contenido {
  overflow: auto;
  position: relative;
}


#noticias2Contenido::-webkit-scrollbar {
  width: 0px;
  background-color: transparent;
  /* Hacer el scrollbar transparente por defecto */
}

#noticias2Contenido::-webkit-scrollbar-thumb {
  background: transparent;
  /* Hacer el thumb del scrollbar transparente por defecto */
}

/* Mostrar el scrollbar cuando el cursor está sobre el div */
#noticias2Contenido:hover::-webkit-scrollbar-thumb {
  background: #babac0;
  /* Cambiar el color del thumb del scrollbar al pasar el mouse sobre él */
  width: 0px;
  border-radius: 16px;
  /*border: 4px solid #fff;*/
}



@media screen and (max-width: 768px) {

  #noticias2 {
    width: 100%;
    display: flex;
    height: auto;
    justify-content: space-around;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
  }

  .Noticias2Inf {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 8%;
  }

  .Noticias2Date {
    background-color: #323232;
    padding: 10px;
    color: white;
    max-width: 30%;
    border-radius: 10px;
    text-align: center;
    display: inline;
  }

}

@media screen and (max-width: 960px) {

  #noticias2 {
    width: 100%;
    display: flex;
    height: auto;
    justify-content: space-around;
    text-align: center;
    flex-direction: row;
    align-items: normal;
    padding: 10px;
    margin-top: 20px;
  }

}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {

  #noticias2 {
    width: 100%;
    display: flex;
    height: auto;
    justify-content: space-around;
    text-align: center;
    flex-direction: column;
    align-items: normal;
    padding: 10px;
    margin-top: 20px;
  }

}