/* Hero principal */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000; /* fondo negro cinematográfico */
  color: #fff;
  text-align: center;
  position: relative;
  width: 75%; /* ocupa 3/4 de la pantalla */
}

/* Logo dentro del hero */
#hero .logo img {
  max-height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

#hero .hero-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Contenedor hero + noticias */
.hero-news-container {
  display: flex;
  flex-direction: row;
}

/* Noticias como sidebar fijo */
#news {
  position: fixed;
  right: 0;
  top: 0;
  width: 25%;          /* ancho de la banda lateral */
  height: 100vh;       /* ocupa toda la altura */
  background: #111;
  padding: 1rem;
  overflow-y: auto;    /* scroll si hay muchas noticias */
  border-left: 2px solid #222;
}

/* Estilo de cada noticia */
.news-item {
  background: #222;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.news-item img {
  max-width: 100%;
  border-radius: 4px;
}

.news-item h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
}
