/**
 * Quiniela Liga MX - Layout
 * Estilos de layout principal y estructura de secciones
 */

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 0;
}

.section {
  display: none;
  padding: 3rem 0;
}

.section.active {
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 1.875rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 1.5rem 0;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
