/* === Base Mobile First === */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #eee;
}

header {
  background-color: #000;
  padding: 15px;
  text-align: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e60000;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

nav a {
  color: #eee;
  text-decoration: none;
}

nav a:hover {
  color: #e60000;
}

main {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* === Post Base === */
.post {
  background: #222;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px #000;
}

/* === Noticias === */
.noticia {
  border-left: 5px solid #e60000;
}

.noticia h3 {
  color: #e60000;
  margin-top: 0;
}

/* === Shows === */
.show .video-info h3 {
  margin: 0;
  color: #e60000;
}

.show .video-info p {
  margin: 4px 0;
  font-size: 14px;
}

.video {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  margin-top: 10px;
}

.video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  left: 0;
  top: 0;
}

/* === Footer === */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* === Responsive === */
@media (min-width: 768px) {
  nav ul {
    flex-direction: row;
    justify-content: center;
  }

  .logo {
    font-size: 28px;
  }
}

.post-img {
  width: 100%;
  max-width: 600px; /* límite si querés que no se estire demasiado en pantallas grandes */
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fecha {
  font-size: 0.875rem;
  color: #666;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}


