/* Estilos básicos para Quebrada Negritos */
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
  background-color: #f0f7fa;
  color: #1f2937;
}

.site-header, .site-footer {
  background-color: #0f2233;
  color: #ffffff;
  padding: 1rem 2rem;
}

.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.nav {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 600;
}

.main-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.live-card, .actions-card, .mission-card, .media-grid, .media-card {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 0.5rem;
}

.btn {
  display: inline-block;
  background-color: #14b8a6;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
}

.media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.media-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.media-title {
  margin-top: 0.5rem;
  font-weight: 600;
  text-align: center;
}